Files
baupm-core/app/controllers/healthcheck_controller.rb
2023-12-03 17:14:42 +01:00

10 lines
183 B
Ruby

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