You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2022/08/03 22:11:38 UTC

[airavata-django-portal] branch develop updated: AIRAVATA-3644 Default showInDashboard to false

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

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/develop by this push:
     new d6bafd09 AIRAVATA-3644 Default showInDashboard to false
d6bafd09 is described below

commit d6bafd09ef4bf1857007201d1a5b15594649e6f9
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Wed Aug 3 18:11:30 2022 -0400

    AIRAVATA-3644 Default showInDashboard to false
---
 .../apps/api/static/django_airavata_api/js/models/Notification.js   | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/django_airavata/apps/api/static/django_airavata_api/js/models/Notification.js b/django_airavata/apps/api/static/django_airavata_api/js/models/Notification.js
index 52e6f110..07fd669f 100644
--- a/django_airavata/apps/api/static/django_airavata_api/js/models/Notification.js
+++ b/django_airavata/apps/api/static/django_airavata_api/js/models/Notification.js
@@ -23,7 +23,11 @@ const FIELDS = [
     type: NotificationPriority,
   },
   "userHasWriteAccess",
-  "showInDashboard"
+  {
+    name: "showInDashboard",
+    type: "boolean",
+    default: false,
+  },
 ];
 
 export default class Notification extends BaseModel {