Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add recurring retros feature flag #9347

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions packages/server/graphql/private/typeDefs/_legacy.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1421,36 +1421,6 @@ enum TaskStatusEnum {
future
}

"""
The types of flags that give an individual user super powers
"""
type UserFeatureFlags {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just some cleanup as it's defined in updateUserFeatureFlags.graphql now

"""
true if spotlight is allowed
"""
spotlight: Boolean!

"""
true if standups is allowed
"""
standups: Boolean!

"""
true if gitlab is allowed
"""
gitlab: Boolean!

"""
true if azuredevops is allowed
"""
azureDevOps: Boolean!

"""
true if recurrence is allowed
"""
recurrence: Boolean!
}

"""
A big picture line item
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ enum OrganizationFeatureFlagsEnum {
kudos
aiIcebreakers
aiTemplate
recurringRetros
}

extend type Mutation {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,5 @@ type OrganizationFeatureFlags {
kudos: Boolean!
aiIcebreakers: Boolean!
aiTemplate: Boolean!
recurringRetros: Boolean!
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ const OrganizationFeatureFlags: OrganizationFeatureFlagsResolvers = {
meetingInception: ({meetingInception}) => !!meetingInception,
kudos: ({kudos}) => !!kudos,
aiIcebreakers: ({aiIcebreakers}) => !!aiIcebreakers,
aiTemplate: ({aiTemplate}) => !!aiTemplate
aiTemplate: ({aiTemplate}) => !!aiTemplate,
recurringRetros: ({recurringRetros}) => !!recurringRetros
}

export default OrganizationFeatureFlags
Loading