summaryrefslogtreecommitdiff
path: root/lib/api/entities/clusters/agent_token_with_token.rb
blob: 8b84c80795fce68d562cb507fb8bb7cb62ba144d (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module API
  module Entities
    module Clusters
      class AgentTokenWithToken < AgentToken
        expose :token
      end
    end
  end
end