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

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

10 lines
221 B
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
module API
module Entities
class DeployTokenWithToken < Entities::DeployToken
2023-01-13 00:05:48 +05:30
expose :token, documentation: { type: 'string', example: 'jMRvtPNxrn3crTAGukpZ' }
2020-04-08 14:13:33 +05:30
end
end
end