12 lines
175 B
Ruby
Raw Normal View History

2017-02-24 13:23:11 +11:00
module DiscourseDonations
2017-02-15 13:30:28 +11:00
class PaymentsController < ApplicationController
2017-02-07 13:56:22 +11:00
def index
render json: {}
end
2017-02-10 15:10:47 +11:00
def show
render json: {}
end
2017-01-31 13:28:41 +11:00
end
end