mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-29 12:31:02 +00:00
Remove bundle inheritance
This commit is contained in:
parent
88fd7afeb5
commit
82fc828442
11 changed files with 12 additions and 4 deletions
|
@ -41,6 +41,18 @@ homepage:
|
||||||
fos_user:
|
fos_user:
|
||||||
resource: "@FOSUserBundle/Resources/config/routing/all.xml"
|
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:
|
fos_oauth_server_token:
|
||||||
resource: "@FOSOAuthServerBundle/Resources/config/routing/token.xml"
|
resource: "@FOSOAuthServerBundle/Resources/config/routing/token.xml"
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,4 @@ use Symfony\Component\HttpKernel\Bundle\Bundle;
|
||||||
|
|
||||||
class WallabagUserBundle extends Bundle
|
class WallabagUserBundle extends Bundle
|
||||||
{
|
{
|
||||||
public function getParent()
|
|
||||||
{
|
|
||||||
return 'FOSUserBundle';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue