Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Iparapheur Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Libriciel
i-Parapheur
iparapheur4
Iparapheur Core
Commits
34412034
Unverified
Commit
34412034
authored
2 months ago
by
lhameury
Browse files
Options
Downloads
Patches
Plain Diff
Fix typo in mails for "mailsec pastell" action
parent
402d2d46
No related branches found
No related tags found
No related merge requests found
Pipeline
#88048
failed
2 months ago
Stage: build
Stage: docker
Stage: package
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
iparapheur-core/src/main/java/com/atolcd/parapheur/repo/impl/NotificationCenterImpl.java
+22
-23
22 additions, 23 deletions
...om/atolcd/parapheur/repo/impl/NotificationCenterImpl.java
with
23 additions
and
23 deletions
CHANGELOG.md
+
1
−
0
View file @
34412034
...
...
@@ -18,6 +18,7 @@ et adhère aux principes du [Semantic Versioning](http://semver.org/).
-
Les noms d'utilisateurs de plus de 56 caractères posent problèmes sur alfresco et ont donc été limités
-
Certains caractères n'étaient pas correctement échappés dans les URL de téléchargement des dossiers à extraire
-
Problème d'accès au bouton de suppression des cachets serveur depuis la page d'administration
-
Typo dans les notifications mails lors d'action de mail sécurisé pastell
## [4.7.23] - 24-11-29
...
...
This diff is collapsed.
Click to expand it.
iparapheur-core/src/main/java/com/atolcd/parapheur/repo/impl/NotificationCenterImpl.java
+
22
−
23
View file @
34412034
...
...
@@ -537,29 +537,28 @@ public class NotificationCenterImpl implements NotificationCenter {
private
String
getNomAction
(
String
action
)
{
String
actionName
;
if
(
EtapeCircuit
.
ETAPE_ARCHIVAGE
.
equals
(
action
))
{
actionName
=
"archivage"
;
}
else
if
(
EtapeCircuit
.
ETAPE_SIGNATURE
.
equals
(
action
))
{
actionName
=
"signature"
;
}
else
if
(
EtapeCircuit
.
ETAPE_TDT
.
equals
(
action
))
{
actionName
=
"envoi au TdT"
;
}
/*else if (EtapeCircuit.ETAPE_DIFF_EMAIL.equals(action)) {
}*/
else
if
(
EtapeCircuit
.
ETAPE_MAILSEC
.
equals
(
action
))
{
actionName
=
"envoi par mail sécurisé"
;
}
else
if
(
EtapeCircuit
.
ETAPE_VISA
.
equals
(
action
))
{
actionName
=
"visa"
;
}
else
if
(
EtapeCircuit
.
ETAPE_CACHET
.
equals
(
action
))
{
actionName
=
"cachet serveur"
;
}
else
{
actionName
=
"action"
;
switch
(
action
)
{
case
EtapeCircuit
.
ETAPE_ARCHIVAGE
:
actionName
=
"archivage"
;
break
;
case
EtapeCircuit
.
ETAPE_SIGNATURE
:
actionName
=
"signature"
;
break
;
case
EtapeCircuit
.
ETAPE_TDT
:
actionName
=
"envoi au TdT"
;
break
;
case
EtapeCircuit
.
ETAPE_MAILSEC
:
case
EtapeCircuit
.
ETAPE_MAILSEC_PASTELL
:
actionName
=
"envoi par mail sécurisé"
;
break
;
case
EtapeCircuit
.
ETAPE_VISA
:
actionName
=
"visa"
;
break
;
case
EtapeCircuit
.
ETAPE_CACHET
:
actionName
=
"cachet serveur"
;
break
;
default
:
actionName
=
"action"
;
}
return
actionName
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment