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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 21:18:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 21:18:33 +0300
commitf64a639bcfa1fc2bc89ca7db268f594306edfd7c (patch)
treea2c3c2ebcc3b45e596949db485d6ed18ffaacfa1 /app/graphql/types/issue_sort_enum.rb
parentbfbc3e0d6583ea1a91f627528bedc3d65ba4b10f (diff)
Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40
Diffstat (limited to 'app/graphql/types/issue_sort_enum.rb')
-rw-r--r--app/graphql/types/issue_sort_enum.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/graphql/types/issue_sort_enum.rb b/app/graphql/types/issue_sort_enum.rb
index 08762264b1b..bf900fe3525 100644
--- a/app/graphql/types/issue_sort_enum.rb
+++ b/app/graphql/types/issue_sort_enum.rb
@@ -5,11 +5,11 @@ module Types
graphql_name 'IssueSort'
description 'Values for sorting issues'
- value 'DUE_DATE_ASC', 'Due date by ascending order', value: :due_date_asc
- value 'DUE_DATE_DESC', 'Due date by descending order', value: :due_date_desc
- value 'RELATIVE_POSITION_ASC', 'Relative position by ascending order', value: :relative_position_asc
- value 'SEVERITY_ASC', 'Severity from less critical to more critical', value: :severity_asc
- value 'SEVERITY_DESC', 'Severity from more critical to less critical', value: :severity_desc
+ value 'DUE_DATE_ASC', 'Due date by ascending order.', value: :due_date_asc
+ value 'DUE_DATE_DESC', 'Due date by descending order.', value: :due_date_desc
+ value 'RELATIVE_POSITION_ASC', 'Relative position by ascending order.', value: :relative_position_asc
+ value 'SEVERITY_ASC', 'Severity from less critical to more critical.', value: :severity_asc
+ value 'SEVERITY_DESC', 'Severity from more critical to less critical.', value: :severity_desc
end
end