You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by an...@apache.org on 2019/03/29 13:58:13 UTC

[incubator-dlab] 01/02: [DLAB-576]: Added succeess notification after creating/removing account

This is an automated email from the ASF dual-hosted git repository.

ankovalyshyn pushed a commit to branch DLAB-576
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit e0ff81765ba0c1968f5ac85e19cdb4e162f04c09
Author: Andriana Kovalyshyn <An...@epam.com>
AuthorDate: Fri Mar 29 15:56:42 2019 +0200

    [DLAB-576]: Added succeess notification after creating/removing account
---
 .../webapp/src/app/resources/manage-ungit/manage-ungit.component.ts     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/manage-ungit/manage-ungit.component.ts b/services/self-service/src/main/resources/webapp/src/app/resources/manage-ungit/manage-ungit.component.ts
index bf2c73e..2bceb72 100644
--- a/services/self-service/src/main/resources/webapp/src/app/resources/manage-ungit/manage-ungit.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/resources/manage-ungit/manage-ungit.component.ts
@@ -114,6 +114,7 @@ export class ManageUngitComponent implements OnInit {
       if (result) {
         this.gitCredentials.splice(this.gitCredentials.indexOf(item), 1);
         this.model.confirmAction(this.gitCredentials);
+        this.toastr.success('Git credentials deleted successfully!', 'Success!');
       }
     });
   }
@@ -135,6 +136,7 @@ export class ManageUngitComponent implements OnInit {
     this.model.confirmAction(this.gitCredentials);
     this.tabGroup.selectedIndex = 0;
     this.editableForm = false;
+    this.toastr.success('Git credentials updated successfully!', 'Success!');
   }
 
   private initFormModel(): void {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org