summaryrefslogtreecommitdiff
path: root/app/graphql/types/sort.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/sort.rb')
-rw-r--r--app/graphql/types/sort.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/graphql/types/sort.rb b/app/graphql/types/sort.rb
deleted file mode 100644
index 1f756fdab69..00000000000
--- a/app/graphql/types/sort.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# frozen_string_literal: true
-
-module Types
- class Types::Sort < Types::BaseEnum
- value "updated_desc", "Updated at descending order"
- value "updated_asc", "Updated at ascending order"
- value "created_desc", "Created at descending order"
- value "created_asc", "Created at ascending order"
- end
-end