10 lines
167 B
Ruby
10 lines
167 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class EnvironmentBasic < Grape::Entity
|
||
|
expose :id, :name, :slug, :external_url
|
||
|
end
|
||
|
end
|
||
|
end
|