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

12 lines
175 B
Ruby
Raw Normal View History

2017-02-23 21:23:11 -05:00
module DiscourseDonations
2017-02-14 21:30:28 -05:00
class PaymentsController < ApplicationController
2017-02-06 21:56:22 -05:00
def index
render json: {}
end
2017-02-09 23:10:47 -05:00
def show
render json: {}
end
2017-01-30 21:28:41 -05:00
end
end