Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.40 KB | None | 0 0
  1. fos_user:
  2.     db_driver:                 mongodb
  3.     firewall_name:             main
  4.     user_class:                Application\UserBundle\Document\User
  5.     from_email:
  6. #    profile:
  7. #        form:
  8. #            type:               FOS\UserBundle\Form\ProfileFormType
  9. #            handler:            FOS\UserBundle\Form\ProfileFormHandler
  10. #            name:               fos_user_profile_form
  11. #            validation_groups:  [Profile]
  12.     change_password:
  13.         form:
  14.             type:              FOS\UserBundle\Form\ChangePasswordFormType
  15.             handler:           FOS\UserBundle\Form\ChangePasswordFormHandler
  16.             name:              fos_user_change_password_form
  17.             validation_groups: [ChangePassword]
  18.     registration:
  19.         confirmation:
  20.             from_email:
  21.                 sender_name:   Battl.com
  22.                 address:       noreply@localhost.local
  23.             enabled:           false
  24.             template:          FOSUserBundle:Registration:email.txt.twig
  25.         form:
  26.             type:              Application\UserBundle\Form\UserFormType
  27.             handler:           Application\UserBundle\Form\UserFormHandler
  28.             validation_groups: [BattlRegistration]
  29.     resetting:
  30.         token_ttl: 86400
  31.         email:
  32.             from_email:
  33.                 sender_name:   Battl.com
  34.                 address:       noreply@localhost.local
  35.             template:          FOSUserBundle:Resetting:email.txt.twig
  36.         form:
  37.             type:              FOS\UserBundle\Form\ResettingFormType
  38.             handler:           FOS\UserBundle\Form\ResettingFormHandler
  39.             name:              fos_user_resetting_form
  40.             validation_groups: [ResetPassword]
  41.     service:
  42. #        mailer:                 fos_user.util.mailer.default
  43.         email_canonicalizer:   fos_user.util.email_canonicalizer.default
  44.         username_canonicalizer: fos_user.util.username_canonicalizer.default
  45.     template:
  46.         engine:                twig
  47.         theme:                 FOSUserBundle::form.html.twig
  48.     group:
  49.         group_class:           Application\UserBundle\Document\Groups
  50.         form:
  51.             type:              FOS\UserBundle\Form\GroupFormType
  52.             handler:           FOS\UserBundle\Form\GroupHandler
  53.             name:              fos_user_group_form
  54.             validation_groups: [Registration]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement