summaryrefslogtreecommitdiff
path: root/app/graphql/types/timeframe_input_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/timeframe_input_type.rb')
-rw-r--r--app/graphql/types/timeframe_input_type.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/graphql/types/timeframe_input_type.rb b/app/graphql/types/timeframe_input_type.rb
index 79c1bc5cf01..02a0ec7df7a 100644
--- a/app/graphql/types/timeframe_input_type.rb
+++ b/app/graphql/types/timeframe_input_type.rb
@@ -1,10 +1,8 @@
# frozen_string_literal: true
module Types
- # rubocop: disable Graphql/AuthorizeTypes
class TimeframeInputType < RangeInputType[::Types::DateType]
graphql_name 'Timeframe'
description 'A time-frame defined as a closed inclusive range of two dates'
end
- # rubocop: enable Graphql/AuthorizeTypes
end