Skip to content
Snippets Groups Projects
Commit 1cf164f1 authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Fix private method visibility in container registry

parent c0ebfea6
Branches
Tags
1 merge request!5014Enable Rubocop cops that check access modifiers
Loading
Loading
@@ -24,10 +24,14 @@ module Auth
token[:access] = names.map do |name|
{ type: 'repository', name: name, actions: %w(*) }
end
token.encoded
end
 
def self.token_expire_at
Time.now + current_application_settings.container_registry_token_expire_delay.minutes
end
private
 
def authorized_token(*accesses)
Loading
Loading
@@ -35,7 +39,7 @@ module Auth
token.issuer = registry.issuer
token.audience = params[:service]
token.subject = current_user.try(:username)
token.expire_time = ContainerRegistryAuthenticationService.token_expire_at
token.expire_time = self.class.token_expire_at
token[:access] = accesses.compact
token
end
Loading
Loading
@@ -81,9 +85,5 @@ module Auth
def registry
Gitlab.config.registry
end
def self.token_expire_at
Time.now + current_application_settings.container_registry_token_expire_delay.minutes
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment