diff options
| author | Douwe Maan <douwe@gitlab.com> | 2017-07-06 12:59:21 +0000 |
|---|---|---|
| committer | Douwe Maan <douwe@gitlab.com> | 2017-07-06 12:59:21 +0000 |
| commit | a33fb2132cc9c1924fe986ce562cd7bea084a5c9 (patch) | |
| tree | 93fc06817bd2b068b96e1b5813966d8e4b75b234 /lib | |
| parent | d6836a3bc66662618efdd4f86969bdfd0904aca8 (diff) | |
| parent | 89b0c987fcba5692842f83cfaba90a9004ac91de (diff) | |
| download | gitlab-ce-a33fb2132cc9c1924fe986ce562cd7bea084a5c9.tar.gz | |
Merge branch '18000-remember-me-for-oauth-login' into 'master'
Fix `migration:path` build for "Honor the 'Remember me' parameter for OAuth-based login"
Closes #34713
See merge request !12668
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/tasks/gitlab/info.rake | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/tasks/gitlab/info.rake b/lib/tasks/gitlab/info.rake index e3883278886..e9fb6a008b0 100644 --- a/lib/tasks/gitlab/info.rake +++ b/lib/tasks/gitlab/info.rake @@ -42,8 +42,7 @@ namespace :gitlab do http_clone_url = project.http_url_to_repo ssh_clone_url = project.ssh_url_to_repo - omniauth_providers = Gitlab.config.omniauth.providers - omniauth_providers.map! { |provider| provider['name'] } + omniauth_providers = Gitlab.config.omniauth.providers.map { |provider| provider['name'] } puts "" puts "GitLab information".color(:yellow) |
