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

10 lines
183 B
Ruby
Raw Normal View History

2023-05-06 15:59:49 +02:00
class HealthcheckController < ApplicationController
unloadable
skip_before_action :check_if_login_required
def index
render :layout => false, :action => 'index'
end
end