summaryrefslogtreecommitdiff
path: root/app/graphql/types/milestone_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/milestone_type.rb')
-rw-r--r--app/graphql/types/milestone_type.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/graphql/types/milestone_type.rb b/app/graphql/types/milestone_type.rb
index 2772fbec86f..78d0a8220ec 100644
--- a/app/graphql/types/milestone_type.rb
+++ b/app/graphql/types/milestone_type.rb
@@ -6,14 +6,14 @@ module Types
authorize :read_milestone
- field :description, GraphQL::STRING_TYPE, null: true
- field :title, GraphQL::STRING_TYPE, null: false
- field :state, GraphQL::STRING_TYPE, null: false
+ field :description, GraphQL::STRING_TYPE, null: true # rubocop:disable Graphql/Descriptions
+ field :title, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
+ field :state, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
- field :due_date, Types::TimeType, null: true
- field :start_date, Types::TimeType, null: true
+ field :due_date, Types::TimeType, null: true # rubocop:disable Graphql/Descriptions
+ field :start_date, Types::TimeType, null: true # rubocop:disable Graphql/Descriptions
- field :created_at, Types::TimeType, null: false
- field :updated_at, Types::TimeType, null: false
+ field :created_at, Types::TimeType, null: false # rubocop:disable Graphql/Descriptions
+ field :updated_at, Types::TimeType, null: false # rubocop:disable Graphql/Descriptions
end
end