13 lines
243 B
Ruby
13 lines
243 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class BasicVariableEntity < Grape::Entity
|
|
expose :id
|
|
expose :key
|
|
expose :value
|
|
expose :variable_type
|
|
|
|
expose :protected?, as: :protected
|
|
expose :masked?, as: :masked
|
|
end
|
|
end
|