discourse/plugins/discourse-subscriptions/app/controllers/concerns/group.rb
2025-07-15 16:38:05 +02:00

11 lines
211 B
Ruby

# frozen_string_literal: true
module DiscourseSubscriptions
module Group
extend ActiveSupport::Concern
def plan_group(plan)
::Group.find_by_name(plan[:metadata][:group_name])
end
end
end