discourse-subscriptions/app/controllers/discourse_subscriptions/pricingtable_controller.rb

12 lines
222 B
Ruby

# frozen_string_literal: true
module DiscourseSubscriptions
class PricingtableController < ::ApplicationController
requires_plugin DiscourseSubscriptions::PLUGIN_NAME
def index
head 200
end
end
end