diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-28 14:46:30 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-28 14:46:30 +0200 |
commit | 900c844861eac95fc41afbbbc121584b8f9e6c32 (patch) | |
tree | c207074320d3c42d571413e0233320c8da125b50 /src/Wallabag/ApiBundle/Resources | |
parent | eca4d030bf90cdf6ca0b6a86b18bd8f66a36db08 (diff) | |
download | wallabag-900c844861eac95fc41afbbbc121584b8f9e6c32.tar.gz wallabag-900c844861eac95fc41afbbbc121584b8f9e6c32.tar.zst wallabag-900c844861eac95fc41afbbbc121584b8f9e6c32.zip |
Exploded WallabagRestController into many controllers
Fix #2503
Diffstat (limited to 'src/Wallabag/ApiBundle/Resources')
-rw-r--r-- | src/Wallabag/ApiBundle/Resources/config/routing_rest.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/Wallabag/ApiBundle/Resources/config/routing_rest.yml b/src/Wallabag/ApiBundle/Resources/config/routing_rest.yml index 5f43f971..901cf449 100644 --- a/src/Wallabag/ApiBundle/Resources/config/routing_rest.yml +++ b/src/Wallabag/ApiBundle/Resources/config/routing_rest.yml | |||
@@ -1,4 +1,14 @@ | |||
1 | entries: | 1 | api: |
2 | type: rest | 2 | type: rest |
3 | resource: "WallabagApiBundle:WallabagRest" | 3 | resource: "WallabagApiBundle:WallabagRest" |
4 | name_prefix: api_ | 4 | name_prefix: api_ |
5 | |||
6 | entries: | ||
7 | type: rest | ||
8 | resource: "WallabagApiBundle:EntryRest" | ||
9 | name_prefix: api_ | ||
10 | |||
11 | tags: | ||
12 | type: rest | ||
13 | resource: "WallabagApiBundle:TagRest" | ||
14 | name_prefix: api_ | ||