discourse-subscriptions/app/controllers/discourse_payments/payments_controller.rb

12 lines
174 B
Ruby

module DiscoursePayments
class PaymentsController < ApplicationController
def index
render json: {}
end
def show
render json: {}
end
end
end