2019-10-10 13:52:55 +11:00

15 lines
271 B
Ruby

# frozen_string_literal: true
module DiscoursePatrons
class PlansController < ::ApplicationController
include DiscoursePatrons::Stripe
before_action :set_api_key
def index
plans = ::Stripe::Plan.list
render json: plans.data
end
end
end