Skip to content
Snippets Groups Projects
Commit 29d15814 authored by Florian Azizian's avatar Florian Azizian
Browse files

FEAT #11645 TIME 0:20 resend activation notification

parent b8ab9984
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,12 @@
{{lang.desactivateAbsence}}
</p>
</a>
<a mat-list-item *ngIf="user.canSendActivationNotification" (click)="resendActivationNotification()">
<mat-icon color="primary" mat-list-icon class="fa fa-paper-plane"></mat-icon>
<p mat-line>
{{lang.sendActivationNotification}}
</p>
</a>
<a *ngIf="user.canModifyPassword" mat-list-item (click)="changePasswd();">
<mat-icon color="primary" mat-list-icon class="fa fa-key"></mat-icon>
<p mat-line>
......
......@@ -369,6 +369,19 @@ export class UserAdministrationComponent implements OnInit {
this.selectedSignatureLabel = this.user.signatures[index].signature_label;
}
resendActivationNotification(user: any) {
let r = confirm(this.lang.confirmAction + ' ' + this.lang.sendActivationNotification);
if (r) {
this.http.put("../../rest/users/" + this.serialId + "/accountActivationNotification", {})
.subscribe((data: any) => {
this.notify.success(this.lang.activationNotificationSend);
}, (err) => {
this.notify.error(err.error.errors);
});
}
}
toggleGroup(group: any) {
if ($j('#' + group.group_id + '-input').is(':checked') == true) {
var groupReq = {
......
......@@ -1315,4 +1315,6 @@ export const LANG_EN = {
"personalDataMsg": "Users personal data are",
"notVisible": "Not visible",
"enableGroupMsg": "This group could access to all functionnalities.",
"sendActivationNotification": "Send activation notification",
"activationNotificationSend": "Activation notification send",
};
......@@ -1353,4 +1353,6 @@ export const LANG_FR = {
"personalDataMsg": "Les données personnelles de l'utilisateur sont : ",
"notVisible": "Non visibles",
"enableGroupMsg": "Ce groupe pourra potentiellement avoir accès à l'ensemble des fonctionnalités de l'application.",
"sendActivationNotification": "Envoyer à nouveau le courriel d'activation",
"activationNotificationSend": "Le courriel d'activation a été envoyé",
};
......@@ -1340,4 +1340,6 @@ export const LANG_NL = {
"personalDataMsg": "Users personal data are", //_TO_TRANSLATE
"notVisible": "Not visible", //_TO_TRANSLATE
"enableGroupMsg": "This group could access to all functionnalities.", //_TO_TRANSLATE
"sendActivationNotification": "Send activation notification", //_TO_TRANSLATE
"activationNotificationSend": "Activation notification send", //_TO_TRANSLATE
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment