Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorOswaldo Ferreira <oswaldo@gitlab.com>2017-07-24 23:45:12 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-07-27 19:09:46 +0300
commite561b142fa7c9dd636fd056fc0a6c84961d0cd46 (patch)
tree10e34698af1d5a3647840faee470e6047b782e30 /config
parent9981814514742a2ee507d4dcc2fd71099fd96585 (diff)
Backport gitlab-ee!2456
Diffstat (limited to 'config')
-rw-r--r--config/initializers/doorkeeper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/initializers/doorkeeper.rb b/config/initializers/doorkeeper.rb
index 8e2e639fc41..40e635bf2cf 100644
--- a/config/initializers/doorkeeper.rb
+++ b/config/initializers/doorkeeper.rb
@@ -92,9 +92,9 @@ Doorkeeper.configure do
# Under some circumstances you might want to have applications auto-approved,
# so that the user skips the authorization step.
# For example if dealing with trusted a application.
- # skip_authorization do |resource_owner, client|
- # client.superapp? or resource_owner.admin?
- # end
+ skip_authorization do |resource_owner, client|
+ client.application.trusted?
+ end
# WWW-Authenticate Realm (default "Doorkeeper").
# realm "Doorkeeper"