mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-28 22:59:16 +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
|