Commit 592b2581 authored by Sarah Groff Hennigh-Palermo's avatar Sarah Groff Hennigh-Palermo

Merge branch 'lm-fix-callout-bug' into 'master'

Makes the feature_name field for UserCallout nullable

See merge request gitlab-org/gitlab!66237
parents af715ba0 69a12222
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
class UserCalloutType < BaseObject # rubocop:disable Graphql/AuthorizeTypes class UserCalloutType < BaseObject # rubocop:disable Graphql/AuthorizeTypes
graphql_name 'UserCallout' graphql_name 'UserCallout'
field :feature_name, UserCalloutFeatureNameEnum, null: false, field :feature_name, UserCalloutFeatureNameEnum, null: true,
description: 'Name of the feature that the callout is for.' description: 'Name of the feature that the callout is for.'
field :dismissed_at, Types::TimeType, null: true, field :dismissed_at, Types::TimeType, null: true,
description: 'Date when the callout was dismissed.' description: 'Date when the callout was dismissed.'
......
...@@ -13389,7 +13389,7 @@ Represents a recorded measurement (object count) for the Admins. ...@@ -13389,7 +13389,7 @@ Represents a recorded measurement (object count) for the Admins.
| Name | Type | Description | | Name | Type | Description |
| ---- | ---- | ----------- | | ---- | ---- | ----------- |
| <a id="usercalloutdismissedat"></a>`dismissedAt` | [`Time`](#time) | Date when the callout was dismissed. | | <a id="usercalloutdismissedat"></a>`dismissedAt` | [`Time`](#time) | Date when the callout was dismissed. |
| <a id="usercalloutfeaturename"></a>`featureName` | [`UserCalloutFeatureNameEnum!`](#usercalloutfeaturenameenum) | Name of the feature that the callout is for. | | <a id="usercalloutfeaturename"></a>`featureName` | [`UserCalloutFeatureNameEnum`](#usercalloutfeaturenameenum) | Name of the feature that the callout is for. |
### `UserCore` ### `UserCore`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment