12 lines
174 B
Ruby
12 lines
174 B
Ruby
module DiscoursePayments
|
|
class PaymentsController < ApplicationController
|
|
def index
|
|
render json: {}
|
|
end
|
|
|
|
def show
|
|
render json: {}
|
|
end
|
|
end
|
|
end
|