diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-02-04 15:59:57 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-02-04 15:59:57 +0100 |
commit | e008c037f53324b931f027483f9f1053171109c5 (patch) | |
tree | 441c54eb946ffb53a161cad8f686ce7aff875abd /app/config/routing.yml | |
parent | 74f39b0952440fa0c55e5e8a2e1a8d2bbd3acfd7 (diff) | |
parent | 79b9e49d9464e9a67f6ee66fbf6f6c541b1a29f4 (diff) | |
download | wallabag-e008c037f53324b931f027483f9f1053171109c5.tar.gz wallabag-e008c037f53324b931f027483f9f1053171109c5.tar.zst wallabag-e008c037f53324b931f027483f9f1053171109c5.zip |
Merge pull request #1612 from wallabag/v2-settings-page
Settings page
Diffstat (limited to 'app/config/routing.yml')
-rw-r--r-- | app/config/routing.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/config/routing.yml b/app/config/routing.yml index 84b98d23..c491d35d 100644 --- a/app/config/routing.yml +++ b/app/config/routing.yml | |||
@@ -22,7 +22,9 @@ rest : | |||
22 | 22 | ||
23 | homepage: | 23 | homepage: |
24 | path: "/{page}" | 24 | path: "/{page}" |
25 | defaults: { _controller: WallabagCoreBundle:Entry:showUnread, page : 1 } | 25 | defaults: |
26 | _controller: WallabagCoreBundle:Entry:showUnread | ||
27 | page : 1 | ||
26 | requirements: | 28 | requirements: |
27 | page: \d+ | 29 | page: \d+ |
28 | 30 | ||
@@ -31,3 +33,8 @@ fos_user: | |||
31 | 33 | ||
32 | fos_oauth_server_token: | 34 | fos_oauth_server_token: |
33 | resource: "@FOSOAuthServerBundle/Resources/config/routing/token.xml" | 35 | resource: "@FOSOAuthServerBundle/Resources/config/routing/token.xml" |
36 | |||
37 | craue_config_settings_modify: | ||
38 | path: /settings | ||
39 | defaults: | ||
40 | _controller: CraueConfigBundle:Settings:modify | ||