Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deploy_token.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: daee104ba6bbf86cca23884739e9c425af49858e (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module API
  module Entities
    class DeployToken < Grape::Entity
      # exposing :token is a security risk and should be avoided
      expose :id, :name, :username, :expires_at, :scopes, :revoked
      expose :expired?, as: :expired
    end
  end
end