10 lines
153 B
Ruby
Raw Normal View History

2019-09-14 12:56:28 +10:00
# frozen_string_literal: true
module DiscoursePatrons
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