11 lines
238 B
Ruby
11 lines
238 B
Ruby
|
# 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
|
||
|
end
|
||
|
end
|
||
|
end
|