Files
baupm-core/app/controllers/manifest_controller.rb

10 lines
180 B
Ruby
Raw Normal View History

2023-04-15 10:14:26 +02:00
class ManifestController < ApplicationController
unloadable
skip_before_action :check_if_login_required
def index
render :layout => false, :action => 'index'
end
end