diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2017-12-15 12:46:22 +0000 |
---|---|---|
committer | Oswaldo Ferreira <oswaldo@gitlab.com> | 2017-12-19 14:04:43 -0200 |
commit | 5a3a41e9e52c0fc96a95484bfb60c38a02fc702e (patch) | |
tree | 79cf2ded70cea845699ed76096f643afb094598a /doc | |
parent | ac8c0ba1965c2b078f7501b929c5258be6fab81b (diff) | |
download | gitlab-ce-5a3a41e9e52c0fc96a95484bfb60c38a02fc702e.tar.gz |
Merge branch 'dm-ldap-email-readonly' into 'master'
Make sure user email is read only when synced with LDAP
Closes #41033
See merge request gitlab-org/gitlab-ce!15915
(cherry picked from commit d39d968ba4100be3e77e9d02af6ce10ff18ca508)
481b8a71 Make sure user email is read only when synced with LDAP
Diffstat (limited to 'doc')
-rw-r--r-- | doc/integration/omniauth.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/integration/omniauth.md b/doc/integration/omniauth.md index 0e20b8096e9..20087a981f9 100644 --- a/doc/integration/omniauth.md +++ b/doc/integration/omniauth.md @@ -229,16 +229,18 @@ In order to enable/disable an OmniAuth provider, go to Admin Area -> Settings -> ## Keep OmniAuth user profiles up to date You can enable profile syncing from selected OmniAuth providers and for all or for specific user information. - + +When authenticating using LDAP, the user's email is always synced. + ```ruby gitlab_rails['sync_profile_from_provider'] = ['twitter', 'google_oauth2'] gitlab_rails['sync_profile_attributes'] = ['name', 'email', 'location'] ``` - + **For installations from source** - + ```yaml omniauth: sync_profile_from_provider: ['twitter', 'google_oauth2'] - sync_profile_claims_from_provider: ['email', 'location'] - ```
\ No newline at end of file + sync_profile_attributes: ['email', 'location'] + ``` |