Files
baupm-core/app/controllers/healthcheck_controller.rb
2023-12-03 16:59:01 +01:00

10 lines
180 B
Ruby

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