discourse-subscriptions/app/controllers/admin/plans_controller.rb

14 lines
190 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module DiscoursePatrons
class PlansController < ::Admin::AdminController
def index
head 204
end
def show
head 204
end
end
end