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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-20 15:10:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-20 15:10:00 +0300
commit50ea04b6c6823aa1bd8d64cd9a77dcbd03b19053 (patch)
treede2a6a76b4943f71cf8fed80cd8734731ec0da5a /app/models/personal_access_token.rb
parent078e8bf78bfe2f41af6ca58858f093a53c719ba4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/personal_access_token.rb')
-rw-r--r--app/models/personal_access_token.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/app/models/personal_access_token.rb b/app/models/personal_access_token.rb
index 0da205f86a5..f99c4c6c39d 100644
--- a/app/models/personal_access_token.rb
+++ b/app/models/personal_access_token.rb
@@ -24,7 +24,7 @@ class PersonalAccessToken < ApplicationRecord
# During the implementation of Admin Mode for API, tokens of
# administrators should automatically get the `admin_mode` scope as well
# See https://gitlab.com/gitlab-org/gitlab/-/issues/42692
- before_create :add_admin_mode_scope, if: :user_admin?
+ before_create :add_admin_mode_scope, if: -> { Feature.disabled?(:admin_mode_for_api) && user_admin? }
scope :active, -> { not_revoked.not_expired }
scope :expiring_and_not_notified, ->(date) { where(["revoked = false AND expire_notification_delivered = false AND expires_at >= CURRENT_DATE AND expires_at <= ?", date]) }
@@ -84,10 +84,8 @@ class PersonalAccessToken < ApplicationRecord
protected
def validate_scopes
- # During the implementation of Admin Mode for API,
- # the `admin_mode` scope is not yet part of `all_available_scopes` but still valid.
- # See https://gitlab.com/gitlab-org/gitlab/-/issues/42692
- valid_scopes = Gitlab::Auth.all_available_scopes + [Gitlab::Auth::ADMIN_MODE_SCOPE]
+ valid_scopes = Gitlab::Auth.all_available_scopes
+ valid_scopes += [Gitlab::Auth::ADMIN_MODE_SCOPE] if Feature.disabled?(:admin_mode_for_api)
unless revoked || scopes.all? { |scope| valid_scopes.include?(scope.to_sym) }
errors.add :scopes, "can only contain available scopes"