mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
Merge pull request #5746 from yguedidi/remove-bundle-inheritance
This commit is contained in:
commit
7e6d0d61db
11 changed files with 12 additions and 4 deletions
|
@ -41,6 +41,18 @@ homepage:
|
|||
fos_user:
|
||||
resource: "@FOSUserBundle/Resources/config/routing/all.xml"
|
||||
|
||||
fos_user_security_login:
|
||||
path: /login
|
||||
defaults:
|
||||
_controller: Wallabag\UserBundle\Controller\SecurityController::loginAction
|
||||
methods: [GET, POST]
|
||||
|
||||
fos_user_registration_register:
|
||||
path: /register
|
||||
defaults:
|
||||
_controller: Wallabag\UserBundle\Controller\RegistrationController::registerAction
|
||||
methods: [GET, POST]
|
||||
|
||||
fos_oauth_server_token:
|
||||
resource: "@FOSOAuthServerBundle/Resources/config/routing/token.xml"
|
||||
|
||||
|
|
|
@ -6,8 +6,4 @@ use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|||
|
||||
class WallabagUserBundle extends Bundle
|
||||
{
|
||||
public function getParent()
|
||||
{
|
||||
return 'FOSUserBundle';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue