blob: 9c5bf54e299f9a2c133e3c514ddca18e02aae0f5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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
|