discourse-subscriptions/app/controllers/concerns/group.rb

12 lines
205 B
Ruby
Raw Normal View History

2019-11-28 17:01:56 -05:00
# frozen_string_literal: true
module DiscoursePatrons
module Group
extend ActiveSupport::Concern
def plan_group(plan)
::Group.find_by_name(plan[:metadata][:group_name])
end
end
end