summaryrefslogtreecommitdiff
path: root/app/graphql/types/projects/services/jira_project_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/projects/services/jira_project_type.rb')
-rw-r--r--app/graphql/types/projects/services/jira_project_type.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/graphql/types/projects/services/jira_project_type.rb b/app/graphql/types/projects/services/jira_project_type.rb
index 0ff1b9d8903..1c5b97802e3 100644
--- a/app/graphql/types/projects/services/jira_project_type.rb
+++ b/app/graphql/types/projects/services/jira_project_type.rb
@@ -8,12 +8,12 @@ module Types
graphql_name 'JiraProject'
field :key, GraphQL::Types::String, null: false,
- description: 'Key of the Jira project.'
+ description: 'Key of the Jira project.'
field :name, GraphQL::Types::String, null: true,
- description: 'Name of the Jira project.'
+ description: 'Name of the Jira project.'
field :project_id, GraphQL::Types::Int, null: false,
- description: 'ID of the Jira project.',
- method: :id
+ description: 'ID of the Jira project.',
+ method: :id
end
# rubocop:enable Graphql/AuthorizeTypes
end