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
|