gitlab-org--gitlab-foss/app/models/concerns/feature_gate.rb

8 lines
108 B
Ruby

module FeatureGate
def flipper_id
return nil if new_record?
"#{self.class.name}:#{id}"
end
end