11 lines
200 B
Ruby
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
|