2017-02-24 13:23:11 +11:00

12 lines
175 B
Ruby

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