You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2020/03/19 12:13:25 UTC

[incubator-streampipes] branch dev updated (a475f4d -> 2ebe46a)

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

riemer pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git.


    from a475f4d  Add pick-date to package.json
     new 2fbe136  Modify SecretsController
     new 6262da1  Merge branch 'dev' of github.com:apache/incubator-streampipes into dev
     new 2ebe46a  Add NotificationItem import to Toolbar template

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ui/deployment/toolbar.controller.mst                     | 1 +
 ui/src/app/editor/components/secret/secret.controller.ts | 4 ++++
 ui/src/app/services/notification-count-service.ts        | 3 ---
 3 files changed, 5 insertions(+), 3 deletions(-)


[incubator-streampipes] 01/03: Modify SecretsController

Posted by ri...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit 2fbe136308a24187697b8d7728776dc5665d9429
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Thu Mar 19 13:08:04 2020 +0100

    Modify SecretsController
---
 ui/src/app/editor/components/secret/secret.controller.ts | 4 ++++
 ui/src/app/services/notification-count-service.ts        | 3 ---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/ui/src/app/editor/components/secret/secret.controller.ts b/ui/src/app/editor/components/secret/secret.controller.ts
index 626a456..709caee 100644
--- a/ui/src/app/editor/components/secret/secret.controller.ts
+++ b/ui/src/app/editor/components/secret/secret.controller.ts
@@ -16,6 +16,8 @@
  *
  */
 
+import {OneOfRemoteController} from "../oneof-remote/oneof-remote.controller";
+
 export class SecretController {
 
     staticProperty: any;
@@ -43,3 +45,5 @@ export class SecretController {
         this.staticProperty.properties.encrypted=false;
     }
 }
+
+SecretController.$inject = ['$scope', '$rootScope'];
diff --git a/ui/src/app/services/notification-count-service.ts b/ui/src/app/services/notification-count-service.ts
index 40511b2..f278fbd 100644
--- a/ui/src/app/services/notification-count-service.ts
+++ b/ui/src/app/services/notification-count-service.ts
@@ -38,9 +38,6 @@ export class NotificationCountService {
 
     increaseNotificationCount(notification: NotificationItem) {
         let id = this.makeId(notification.correspondingPipelineId, notification.title);
-        console.log(id);
-        console.log(this.lockNotificationId);
-        console.log(id === this.lockNotificationId);
         if (this.lockActive && (id === this.lockNotificationId)) {
         } else {
             this.unreadNotificationCount = this.unreadNotificationCount + 1;


[incubator-streampipes] 02/03: Merge branch 'dev' of github.com:apache/incubator-streampipes into dev

Posted by ri...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit 6262da1d61b6ecdfdd95c928fc64e0d45c5539cf
Merge: 2fbe136 a475f4d
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Thu Mar 19 13:08:14 2020 +0100

    Merge branch 'dev' of github.com:apache/incubator-streampipes into dev

 ui/package.json       | 1 +
 ui/src/scss/main.scss | 1 +
 2 files changed, 2 insertions(+)


[incubator-streampipes] 03/03: Add NotificationItem import to Toolbar template

Posted by ri...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit 2ebe46a62712d6b56557a541c0aa3040d3386784
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Thu Mar 19 13:13:08 2020 +0100

    Add NotificationItem import to Toolbar template
---
 ui/deployment/toolbar.controller.mst | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ui/deployment/toolbar.controller.mst b/ui/deployment/toolbar.controller.mst
index d850e11..901446b 100644
--- a/ui/deployment/toolbar.controller.mst
+++ b/ui/deployment/toolbar.controller.mst
@@ -18,6 +18,7 @@
 
 import { Client } from '@stomp/stompjs';
 import { NotificationCountService } from "../services/notification-count-service";
+import { NotificationItem } from "../notifications/model/notifications.model";
 
 export class ToolbarController {
     AuthStatusService: any;