mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-19 09:54:50 +00:00
15 lines
227 B
Ruby
15 lines
227 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscoursePatrons
|
|
class PatronsController < ApplicationController
|
|
def index
|
|
result = {}
|
|
render json: result
|
|
end
|
|
|
|
def create
|
|
render json: {}
|
|
end
|
|
end
|
|
end
|