debian-mirror-gitlab/lib/api/entities/resource_access_token.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
586 B
Ruby
Raw Normal View History

2021-09-30 23:02:18 +05:30
# frozen_string_literal: true
module API
module Entities
class ResourceAccessToken < Entities::PersonalAccessToken
2023-01-13 00:05:48 +05:30
expose :access_level,
documentation: { type: 'integer',
example: 40,
description: 'Access level. Valid values are 10 (Guest), 20 (Reporter), 30 (Developer) \
, 40 (Maintainer), and 50 (Owner). Defaults to 40.',
values: [10, 20, 30, 40, 50] } do |token, options|
2022-03-02 08:16:31 +05:30
options[:resource].member(token.user).access_level
2021-09-30 23:02:18 +05:30
end
end
end
end