Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/entities/project_integration_basic.rb')
-rw-r--r--lib/api/entities/project_integration_basic.rb25
1 files changed, 18 insertions, 7 deletions
diff --git a/lib/api/entities/project_integration_basic.rb b/lib/api/entities/project_integration_basic.rb
index 2870123b83d..aa0ad158b83 100644
--- a/lib/api/entities/project_integration_basic.rb
+++ b/lib/api/entities/project_integration_basic.rb
@@ -3,15 +3,26 @@
module API
module Entities
class ProjectIntegrationBasic < Grape::Entity
- expose :id, :title
- expose :slug do |integration|
+ expose :id, documentation: { type: 'integer', example: 75 }
+ expose :title, documentation: { type: 'string', example: 'Jenkins CI' }
+ expose :slug, documentation: { type: 'integer', example: 'jenkins' } do |integration|
integration.to_param.dasherize
end
- expose :created_at, :updated_at, :active
- expose :commit_events, :push_events, :issues_events, :confidential_issues_events
- expose :merge_requests_events, :tag_push_events, :note_events
- expose :confidential_note_events, :pipeline_events, :wiki_page_events
- expose :job_events, :comment_on_event_enabled
+ expose :created_at, documentation: { type: 'dateTime', example: '2019-11-20T11:20:25.297Z' }
+ expose :updated_at, documentation: { type: 'dateTime', example: '2019-11-20T12:24:37.498Z' }
+ expose :active, documentation: { type: 'boolean' }
+ expose :commit_events, documentation: { type: 'boolean' }
+ expose :push_events, documentation: { type: 'boolean' }
+ expose :issues_events, documentation: { type: 'boolean' }
+ expose :confidential_issues_events, documentation: { type: 'boolean' }
+ expose :merge_requests_events, documentation: { type: 'boolean' }
+ expose :tag_push_events, documentation: { type: 'boolean' }
+ expose :note_events, documentation: { type: 'boolean' }
+ expose :confidential_note_events, documentation: { type: 'boolean' }
+ expose :pipeline_events, documentation: { type: 'boolean' }
+ expose :wiki_page_events, documentation: { type: 'boolean' }
+ expose :job_events, documentation: { type: 'boolean' }
+ expose :comment_on_event_enabled, documentation: { type: 'boolean' }
end
end
end