mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
11 lines
276 B
Ruby
11 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Entities
|
|
class NamespaceExistence < Grape::Entity
|
|
expose :exists, documentation: { type: 'boolean' }
|
|
expose :suggests, documentation: { type: 'string', is_array: true, example: 'my-group1' }
|
|
end
|
|
end
|
|
end
|