group concern

This commit is contained in:
Rimian Perkins 2019-11-29 09:01:56 +11:00
parent ad77fc749b
commit 3904310432
4 changed files with 14 additions and 4 deletions

View File

@ -0,0 +1,11 @@
# 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

View File

@ -3,6 +3,7 @@
module DiscoursePatrons
class SubscriptionsController < ::ApplicationController
include DiscoursePatrons::Stripe
include DiscoursePatrons::Group
before_action :set_api_key
requires_login
@ -59,10 +60,6 @@ module DiscoursePatrons
{ user_id: current_user.id, username: current_user.username_lower }
end
def plan_group(plan)
Group.find_by_name(plan[:metadata][:group_name])
end
def subscription_ok
['active', 'trialing'].include?(@subscription[:status])
end

View File

@ -4,6 +4,7 @@ module DiscoursePatrons
module User
class SubscriptionsController < ::ApplicationController
include DiscoursePatrons::Stripe
include DiscoursePatrons::Group
before_action :set_api_key
requires_login

View File

@ -45,6 +45,7 @@ after_initialize do
[
"../lib/discourse_patrons/engine",
"../config/routes",
"../app/controllers/concerns/group",
"../app/controllers/concerns/stripe",
"../app/controllers/admin_controller",
"../app/controllers/admin/plans_controller",