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 <[email protected]>
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 {