mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-10 05:24:56 +00:00
12 lines
175 B
Ruby
12 lines
175 B
Ruby
module DiscourseDonations
|
|
class PaymentsController < ApplicationController
|
|
def index
|
|
render json: {}
|
|
end
|
|
|
|
def show
|
|
render json: {}
|
|
end
|
|
end
|
|
end
|