Files
baupm-core/app/controllers/manifest_controller.rb
2023-04-15 10:14:26 +02:00

10 lines
180 B
Ruby
Executable File

class ManifestController < ApplicationController
unloadable
skip_before_action :check_if_login_required
def index
render :layout => false, :action => 'index'
end
end