mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-07 01:59:35 +00:00
12 lines
221 B
Ruby
12 lines
221 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscoursePatrons
|
||
|
class AdminController < ::Admin::AdminController
|
||
|
def index
|
||
|
payments = Payment.all
|
||
|
|
||
|
render_serialized(payments, PaymentSerializer)
|
||
|
end
|
||
|
end
|
||
|
end
|