Fixed registration issues

This commit is contained in:
Polonkai Gergely
2012-07-07 22:15:36 +02:00
parent c605fc2075
commit 13d03100e4
15 changed files with 138 additions and 6 deletions

View File

@@ -21,6 +21,7 @@ class AppKernel extends Kernel
new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
new KekRozsak\FrontBundle\KekRozsakFrontBundle(),
new KekRozsak\SecurityBundle\KekRozsakSecurityBundle(),
new KekRozsak\AdminBundle\KekRozsakAdminBundle(),
);
if (in_array($this->getEnvironment(), array('dev', 'test'))) {

View File

@@ -53,8 +53,10 @@ doctrine:
# Swiftmailer Configuration
swiftmailer:
transport: %mailer_transport%
host: %mailer_host%
username: %mailer_user%
password: %mailer_password%
transport: %mailer_transport%
encryption: %mailer_encryption%
auth_mode: %mailer_auth_mode%
host: %mailer_host%
username: %mailer_user%
password: %mailer_password%
spool: { type: memory }

View File

@@ -1,3 +1,7 @@
KekRozsakAdminBundle:
resource: "@KekRozsakAdminBundle/Resources/config/routing.yml"
prefix: /admin
KekRozsakSecurityBundle:
resource: "@KekRozsakSecurityBundle/Resources/config/routing.yml"
prefix: /

View File

@@ -42,6 +42,7 @@ security:
- { path: ^/$, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/cikk/, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/jelentkezes, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/most-varj, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/, roles: [ IS_AUTHENTICATED_FULLY, IS_AUTHENTICATED_REMEMBERED ] }
#- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY, requires_channel: https }
#- { path: ^/_internal/secure, roles: IS_AUTHENTICATED_ANONYMOUSLY, ip: 127.0.0.1 }