discourse/plugins/discourse-subscriptions/app/controllers/discourse_subscriptions/pricingtable_controller.rb
Jarek Radosz 71834c898f
DEV: Update rubocop-discourse to 3.13 and autofix issues (#35073)
Co-authored-by: Loïc Guitaut <loic@discourse.org>
2025-10-06 16:11:01 +02:00

11 lines
198 B
Ruby

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