Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_callout_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 526027322eff51c8e1897d273e146077f28bd1c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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