summaryrefslogtreecommitdiff
path: root/app/serializers/project_access_token_entity.rb
blob: b317057c9529d83573c9152cdf55600329b373fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

# rubocop: disable Gitlab/NamespacedClass
class ProjectAccessTokenEntity < API::Entities::PersonalAccessToken
  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.path,
      project_id: project.path)
  end

  expose :access_level do |token, options|
    project = options.fetch(:project)

    next unless project
    next unless token.user

    project.member(token.user)&.access_level
  end
end
# rubocop: enable Gitlab/NamespacedClass