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

10 lines
161 B
Ruby
Raw Normal View History

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