10 lines
161 B
Ruby
10 lines
161 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscoursePatrons
|
||
|
class SubscriptionsController < ::Admin::AdminController
|
||
|
def index
|
||
|
head 200
|
||
|
end
|
||
|
end
|
||
|
end
|