2019-12-04 11:23:45 +11:00

10 lines
159 B
Ruby

# frozen_string_literal: true
module DiscourseSubscriptions
class AdminController < ::Admin::AdminController
def index
head 200
end
end
end