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/notes/discussion_type.rb')
-rw-r--r--app/graphql/types/notes/discussion_type.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/graphql/types/notes/discussion_type.rb b/app/graphql/types/notes/discussion_type.rb
index 89778b2a99a..5e40c8008a9 100644
--- a/app/graphql/types/notes/discussion_type.rb
+++ b/app/graphql/types/notes/discussion_type.rb
@@ -12,15 +12,15 @@ module Types
implements(Types::ResolvableInterface)
field :created_at, Types::TimeType, null: false,
- description: "Timestamp of the discussion's creation."
+ description: "Timestamp of the discussion's creation."
field :id, DiscussionID, null: false,
- description: "ID of this discussion."
+ description: "ID of this discussion."
field :noteable, Types::NoteableType, null: true,
- description: 'Object which the discussion belongs to.'
+ description: 'Object which the discussion belongs to.'
field :notes, Types::Notes::NoteType.connection_type, null: false,
- description: 'All notes in the discussion.'
+ description: 'All notes in the discussion.'
field :reply_id, DiscussionID, null: false,
- description: 'ID used to reply to this discussion.'
+ description: 'ID used to reply to this discussion.'
# DiscussionID.coerce_result is suitable here, but will always mark this
# as being a 'Discussion'. Using `GlobalId.build` guarantees that we get