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 'app/graphql/types/label_type.rb')
-rw-r--r--app/graphql/types/label_type.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/graphql/types/label_type.rb b/app/graphql/types/label_type.rb
index 28dee2a9db5..94fd15e075c 100644
--- a/app/graphql/types/label_type.rb
+++ b/app/graphql/types/label_type.rb
@@ -9,15 +9,15 @@ module Types
authorize :read_label
field :id, GraphQL::ID_TYPE, null: false,
- description: 'Label ID'
+ description: 'Label ID.'
field :description, GraphQL::STRING_TYPE, null: true,
- description: 'Description of the label (Markdown rendered as HTML for caching)'
+ description: 'Description of the label (Markdown rendered as HTML for caching).'
markdown_field :description_html, null: true
field :title, GraphQL::STRING_TYPE, null: false,
- description: 'Content of the label'
+ description: 'Content of the label.'
field :color, GraphQL::STRING_TYPE, null: false,
- description: 'Background color of the label'
+ description: 'Background color of the label.'
field :text_color, GraphQL::STRING_TYPE, null: false,
- description: 'Text color of the label'
+ description: 'Text color of the label.'
end
end