-
Notifications
You must be signed in to change notification settings - Fork 670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Notifications] Ability to control types of enabled desktop notifications #6443
Comments
Just my thoughts / ideas :) |
@tomneedham Hm. I think I get it. We should distinguish between two types of notifications:
Both types get a native notification. You wanna see the ones from the server and filter out the frequency of the latter (e.g. get conflicts and errors but no notification on sync success - right?).
How's your user experience with this? Do you have examples of which notifications would you like to see less frequently? And about the OCS' notifications - API does not differentiate types, they're all inside a {
"ocs": {
"meta": {
"status": "ok",
"statuscode": 200,
"message": null,
"totalitems": "",
"itemsperpage": ""
},
"data": [
{
"notification_id": 1,
"app": "market",
"user": "admin",
"datetime": "2018-04-10T08:11:02+00:00",
"object_type": "templateeditor",
"object_id": "0.3",
"subject": "Update for Mail Template Editor to version 0.3 is available.",
"message": "",
"link": "http://localhost/index.php/apps/market/#/app/templateeditor",
"actions": [],
"icon": ""
}
]
}
} However, we could filter out (whitelist) which |
I also think this makes sense. It's purely informational can-be-ignored notifications versus action-needed or critical notifications. |
@SamuAlfageme correct. There should be two checkboxes, not sure on naming but as you said:
|
This checkbox decides whether I get native desktop notifications - which is cool. But, in my use case, I really don't want to see every action I perform as a notification on my desktop. If its a received share, and another user changes something, maybe, but actions I perform on my own set of data I dont want to appear as notifications - so basically I have always had this option disabled.
However - getting ownCloud notifications as desktop notifications is awesome, like acept/reject shares, new updates, annoucement etc is AWESOME! I would like to be able to distinguish between them so I can have those enabled, but hide the normal sync activity notifications.
The text was updated successfully, but these errors were encountered: