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

12 lines
174 B
Ruby
Raw Normal View History

2017-02-14 21:03:58 -05:00
module DiscoursePayments
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