debian-mirror-gitlab/app/helpers/groups/crm_settings_helper.rb

10 lines
179 B
Ruby
Raw Normal View History

2022-03-02 08:16:31 +05:30
# frozen_string_literal: true
module Groups
module CrmSettingsHelper
2022-05-07 20:08:51 +05:30
def crm_feature_available?(group)
2022-03-02 08:16:31 +05:30
Feature.enabled?(:customer_relations, group)
end
end
end