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

10 lines
180 B
Ruby
Raw Normal View History

2023-12-03 16:59:01 +01:00
class ManifestController < ApplicationController
unloadable
skip_before_action :check_if_login_required
def index
render :layout => false, :action => 'index'
end
end