gitlab-org--gitlab-foss/lib/api/entities/application_with_secret.rb

11 lines
200 B
Ruby

# frozen_string_literal: true
module API
module Entities
# Use with care, this exposes the secret
class ApplicationWithSecret < Entities::Application
expose :secret
end
end
end