[Connect Admin | Trunk]: subscribers.component.ts & subscriber-invite.component.ts & manage-user-notifications.component.html & users-managers.component.ts & users-subscribers.component.ts: Replace "subscriber" wording with "join/member".
This commit is contained in:
parent
167e154de8
commit
ad5cc2ae19
|
@ -160,7 +160,7 @@ export class SubscribersComponent implements OnInit, OnDestroy, OnChanges {
|
|||
this.page = 1;
|
||||
}
|
||||
this.userManagementService.updateUserInfo();
|
||||
UIkit.notification(this.selectedUser + ' <b>is no longer</b> subscribed to ' + this.name + ' Dashboard', {
|
||||
UIkit.notification(this.selectedUser + ' <b>is no longer</b> a member of ' + this.name + ' Dashboard', {
|
||||
status: 'success',
|
||||
timeout: 6000,
|
||||
pos: 'bottom-right'
|
||||
|
|
|
@ -110,7 +110,7 @@ export class SubscriberInviteComponent implements OnInit, OnDestroy {
|
|||
this.email.recipients = this.inviteForm.get('recipients').value;
|
||||
this.subscriptions.push(this.emailService.sendEmail(properties, this.email).subscribe(res => {
|
||||
if(res['success']) {
|
||||
NotificationHandler.rise('Invitation to subscribe has been <b>sent</b>');
|
||||
NotificationHandler.rise('Invitation to join has been <b>sent</b>');
|
||||
} else {
|
||||
NotificationHandler.rise('An error has occurred. Please try again later', 'danger');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue