mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-09 13:42:17 +00:00
12 lines
222 B
Ruby
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
|