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

12 lines
175 B
Ruby

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