Commit 15f4fd53 authored by Rubén Dávila's avatar Rubén Dávila

Change type of feature flag

`development` makes more sense give it's a shot-lived FF.
parent 094759b5
...@@ -94,7 +94,7 @@ class GitlabSubscription < ApplicationRecord ...@@ -94,7 +94,7 @@ class GitlabSubscription < ApplicationRecord
# We need to show seats in use for free or trial subscriptions # We need to show seats in use for free or trial subscriptions
# in order to make it easy for customers to get this information. # in order to make it easy for customers to get this information.
def seats_in_use def seats_in_use
return super unless Feature.enabled?(:seats_in_use_for_free_or_trial, type: :ops) return super unless Feature.enabled?(:seats_in_use_for_free_or_trial)
return super if has_a_paid_hosted_plan? || !hosted? return super if has_a_paid_hosted_plan? || !hosted?
seats_in_use_now seats_in_use_now
......
--- ---
name: seats-in-use-for-free-or-trial name: seats_in_use_for_free_or_trial
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/44973 introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/44973
rollout_issue_url: rollout_issue_url:
type: ops type: development
group: group::provision group: group::provision
default_enabled: true default_enabled: false
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