You've already forked baupm-core
10 lines
183 B
Ruby
Executable File
10 lines
183 B
Ruby
Executable File
class HealthcheckController < ApplicationController
|
|
unloadable
|
|
|
|
skip_before_action :check_if_login_required
|
|
|
|
def index
|
|
render :layout => false, :action => 'index'
|
|
end
|
|
end
|