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/projects/topic_type.rb')
-rw-r--r--app/graphql/types/projects/topic_type.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/graphql/types/projects/topic_type.rb b/app/graphql/types/projects/topic_type.rb
index bde6d79ddbf..da7df6df4a2 100644
--- a/app/graphql/types/projects/topic_type.rb
+++ b/app/graphql/types/projects/topic_type.rb
@@ -7,20 +7,20 @@ module Types
graphql_name 'Topic'
field :id, GraphQL::Types::ID, null: false,
- description: 'ID of the topic.'
+ description: 'ID of the topic.'
field :name, GraphQL::Types::String, null: false,
- description: 'Name of the topic.'
+ description: 'Name of the topic.'
field :title, GraphQL::Types::String, null: false,
- method: :title_or_name,
- description: 'Title of the topic.'
+ method: :title_or_name,
+ description: 'Title of the topic.'
field :description, GraphQL::Types::String, null: true,
- description: 'Description of the topic.'
+ description: 'Description of the topic.'
field :avatar_url, GraphQL::Types::String, null: true,
- description: 'URL to avatar image file of the topic.'
+ description: 'URL to avatar image file of the topic.'
markdown_field :description_html, null: true