123456789101112131415161718192021222324252627282930313233 |
- hwi_oauth:
- resource_owners:
- login:
- type: oauth2
- client_id: "%client_id%"
- client_secret: "%client_secret%"
- access_token_url: "%access_token_url%"
- authorization_url: "%authorization_url%"
- infos_url: "%infos_url%"
- scope: "user"
- user_response_class: Base\OAuthClientBundle\OAuth\Response\PathUserResponse
- paths:
- identifier: id
- nickname: username
- realname: firstname
- firstname: firstname
- lastname: lastname
- roles: roles
- tenancies: tenancies
- tenancyCurrent: tenancyCurrent
- hasIntercom: hasIntercom
- firewall_names: [secured_area]
- doctrine:
- orm:
- entity_managers:
- default:
- mappings:
- custom_mapping:
- type: annotation
- prefix: Base\OAuthClientBundle\Security\Core\User\
- dir: "%kernel.root_dir%/../vendor/ik/oauthclient-bundle/Security/Core/User/"
- is_bundle: false
|