Files
discourse-subscriptions/app/controllers/admin/plans_controller.rb
T
Rimian Perkins 0d82bcf37e Plans, subscriptions
* Plans controller
* Subscription controller
* Clean admin controller
* Ember Plans route
* Index page
* New Plans
* Translations
2019-09-24 16:04:42 +10:00

14 lines
190 B
Ruby

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