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/jira_users_mapping_input_type.rb')
-rw-r--r--app/graphql/types/jira_users_mapping_input_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/jira_users_mapping_input_type.rb b/app/graphql/types/jira_users_mapping_input_type.rb
index d5b4b2f618a..0c26ea87df2 100644
--- a/app/graphql/types/jira_users_mapping_input_type.rb
+++ b/app/graphql/types/jira_users_mapping_input_type.rb
@@ -8,11 +8,11 @@ module Types
argument :jira_account_id,
GraphQL::STRING_TYPE,
required: true,
- description: 'Jira account ID of the user'
+ description: 'Jira account ID of the user.'
argument :gitlab_id,
GraphQL::INT_TYPE,
required: false,
- description: 'Id of the GitLab user'
+ description: 'Id of the GitLab user.'
end
# rubocop: enable Graphql/AuthorizeTypes
end