discourse-subscriptions/app/controllers/patrons_controller.rb

15 lines
227 B
Ruby
Raw Normal View History

2019-09-11 05:11:02 -04:00
# frozen_string_literal: true
module DiscoursePatrons
class PatronsController < ApplicationController
def index
result = {}
render json: result
end
def create
render json: {}
end
2019-09-11 03:13:12 -04:00
end
end