debian-mirror-gitlab/app/serializers/project_access_token_entity.rb
2022-11-25 23:54:43 +05:30

28 lines
645 B
Ruby

# frozen_string_literal: true
# rubocop: disable Gitlab/NamespacedClass
class ProjectAccessTokenEntity < AccessTokenEntityBase
include Gitlab::Routing
expose :revoke_path do |token, options|
project = options.fetch(:project)
next unless project
revoke_namespace_project_settings_access_token_path(
id: token,
namespace_id: project.namespace.full_path,
project_id: project.path)
end
expose :role do |token, options|
project = options.fetch(:project)
next unless project
next unless token.user
project.member(token.user)&.human_access
end
end
# rubocop: enable Gitlab/NamespacedClass