summaryrefslogtreecommitdiff
path: root/app/graphql/types/user_callout_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/user_callout_type.rb')
-rw-r--r--app/graphql/types/user_callout_type.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/graphql/types/user_callout_type.rb b/app/graphql/types/user_callout_type.rb
new file mode 100644
index 00000000000..12f4fdea878
--- /dev/null
+++ b/app/graphql/types/user_callout_type.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+module Types
+ class UserCalloutType < BaseObject # rubocop:disable Graphql/AuthorizeTypes
+ graphql_name 'UserCallout'
+
+ field :feature_name, UserCalloutFeatureNameEnum, null: false,
+ description: 'Name of the feature that the callout is for.'
+ field :dismissed_at, Types::TimeType, null: true,
+ description: 'Date when the callout was dismissed.'
+ end
+end