discourse-subscriptions/app/controllers/admin_controller.rb

10 lines
159 B
Ruby
Raw Normal View History

2019-09-13 22:56:28 -04:00
# frozen_string_literal: true
2019-12-03 19:23:45 -05:00
module DiscourseSubscriptions
2019-09-13 22:56:28 -04:00
class AdminController < ::Admin::AdminController
def index
2019-11-06 23:49:10 -05:00
head 200
2019-09-15 07:00:39 -04:00
end
2019-09-13 22:56:28 -04:00
end
end