2020-04-08 14:13:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class DeployToken < Grape::Entity
|
|
|
|
# exposing :token is a security risk and should be avoided
|
2021-06-08 01:23:25 +05:30
|
|
|
expose :id, :name, :username, :expires_at, :scopes, :revoked
|
|
|
|
expose :expired?, as: :expired
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|