Conditions | 1 |
Total Lines | 10 |
Lines | 10 |
Ratio | 100 % |
Changes | 0 |
1 | # frozen_string_literal: true |
||
24 | View Code Duplication | def internal_error |
|
|
|||
25 | render "errors/greenlight_error", status: 500, formats: :html, |
||
26 | locals: { |
||
27 | status_code: 500, |
||
28 | message: I18n.t("errors.internal.message"), |
||
29 | help: I18n.t("errors.internal.help"), |
||
30 | display_back: true, |
||
31 | report_issue: true |
||
32 | } |
||
33 | end |
||
34 | |||
40 |