discourse-subscriptions/app/controllers/admin/subscriptions_controller.rb

10 lines
161 B
Ruby
Raw Normal View History

2019-09-23 03:53:05 -04:00
# frozen_string_literal: true
module DiscoursePatrons
class SubscriptionsController < ::Admin::AdminController
def index
head 200
end
end
end