Enable the Layout/CaseIndentation cop
This commit is contained in:
parent
bc16027ccc
commit
1b78a8e957
2 changed files with 16 additions and 15 deletions
|
@ -21,7 +21,8 @@ Layout/BlockEndNewline:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
|
|
||||||
Layout/CaseIndentation:
|
Layout/CaseIndentation:
|
||||||
Enabled: false
|
Enabled: true
|
||||||
|
EnforcedStyle: end
|
||||||
|
|
||||||
Layout/ClosingParenthesisIndentation:
|
Layout/ClosingParenthesisIndentation:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
|
|
|
@ -25,20 +25,20 @@ class NotificationService
|
||||||
|
|
||||||
def text_for_notif attribut=''
|
def text_for_notif attribut=''
|
||||||
case @type_notif
|
case @type_notif
|
||||||
when 'commentaire'
|
when 'commentaire'
|
||||||
"#{notification.liste.size + 1} nouveau(x) commentaire(s) déposé(s)."
|
"#{notification.liste.size + 1} nouveau(x) commentaire(s) déposé(s)."
|
||||||
when 'cerfa'
|
when 'cerfa'
|
||||||
"Un nouveau formulaire a été déposé."
|
"Un nouveau formulaire a été déposé."
|
||||||
when 'piece_justificative'
|
when 'piece_justificative'
|
||||||
attribut
|
attribut
|
||||||
when 'champs'
|
when 'champs'
|
||||||
attribut
|
attribut
|
||||||
when 'submitted'
|
when 'submitted'
|
||||||
"Le dossier nº #{@dossier_id} a été déposé."
|
"Le dossier nº #{@dossier_id} a été déposé."
|
||||||
when 'avis'
|
when 'avis'
|
||||||
'Un nouvel avis a été rendu'
|
'Un nouvel avis a été rendu'
|
||||||
else
|
else
|
||||||
'Notification par défaut'
|
'Notification par défaut'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue