10 lines
159 B
Ruby
Raw Normal View History

2019-09-14 12:56:28 +10:00
# frozen_string_literal: true
2019-12-04 11:23:45 +11:00
module DiscourseSubscriptions
2019-09-14 12:56:28 +10:00
class AdminController < ::Admin::AdminController
def index
2019-11-07 15:49:10 +11:00
head 200
2019-09-15 21:00:39 +10:00
end
2019-09-14 12:56:28 +10:00
end
end