debian-mirror-gitlab/app/graphql/types/user_callout_type.rb
2022-05-07 20:08:51 +05:30

12 lines
407 B
Ruby

# frozen_string_literal: true
module Types
class UserCalloutType < BaseObject # rubocop:disable Graphql/AuthorizeTypes
graphql_name 'UserCallout'
field :dismissed_at, Types::TimeType, null: true,
description: 'Date when the callout was dismissed.'
field :feature_name, UserCalloutFeatureNameEnum, null: true,
description: 'Name of the feature that the callout is for.'
end
end