mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
26 lines
409 B
Ruby
26 lines
409 B
Ruby
|
|
class ErrorsController < ::ActionController::Base
|
||
|
|
include ErrorsHelper
|
||
|
|
include OpenProjectErrorHelper
|
||
|
|
include Accounts::CurrentUser
|
||
|
|
|
||
|
|
def not_found
|
||
|
|
render_404
|
||
|
|
end
|
||
|
|
|
||
|
|
def unacceptable
|
||
|
|
render file: "#{Rails.root}/public/422.html",
|
||
|
|
status: :unacceptable,
|
||
|
|
layout: false
|
||
|
|
end
|
||
|
|
|
||
|
|
def internal_error
|
||
|
|
render_500
|
||
|
|
end
|
||
|
|
|
||
|
|
private
|
||
|
|
|
||
|
|
def use_layout
|
||
|
|
'only_logo'
|
||
|
|
end
|
||
|
|
end
|