* Plans controller * Subscription controller * Clean admin controller * Ember Plans route * Index page * New Plans * Translations
14 lines
190 B
Ruby
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
|