aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/Notification
Commit message (Collapse)AuthorAgeFilesLines
* refactor(apps): Use constructor property promotion when possibleprovokateurin2024-10-211-30/+9
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* fix: add notification icon for transfer ownershipfix/45884/accept-notificationMaksim Sukharev2024-10-161-0/+4
| | | | Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
* fix: dismiss notification only after transfer bg job createdMaksim Sukharev2024-10-161-0/+15
| | | | | | - do not create 'denied' notification if bg job exists Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
* feat(notifications): Migrate server INotifiers to new exceptionsJoas Schilling2024-06-251-4/+5
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(files): Properly handle denied ownership transfersFerdinand Thiessen2024-06-141-17/+32
| | | | | | | | | | | | | When the receiver denies the transfer the notification handler was missing, so no notification was created for the transfer owner. But also the internal notification was created two times: 1. When rejecting the transfer 2. By the reject function when dismissing the notification This is fixed by only relying on the dismiss function. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* chore: Add SPDX headerAndy Scherzinger2024-05-291-21/+2
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* chore: apply changes from Nextcloud coding standards 1.1.1Joas Schilling2023-11-231-5/+5
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
* Get rid of all useless calls to setParsedSubject now that setRichSubject is ↵Côme Chilliet2022-11-291-24/+9
| | | | | | able to do it Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Fix typos in apps/ subdirectoryluz paz2022-09-051-1/+1
| | | | | | | Found via `codespell -q 3 -S l10n,./apps/files_external/3rdparty -L adn,ba,boxs,keypair,jus,optionel,ressource,tabel ./apps/` Signed-off-by: luz paz <luzpaz@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-041-2/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Show the displayname instead of the user idJoas Schilling2020-04-081-19/+34
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove unused importsChristoph Wurst2020-03-251-2/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headers for 18Christoph Wurst2019-12-201-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* added line breaks to incoming transfer notificationSascha Wiswedel2019-12-171-2/+2
| | | | | | wrapped notifications into double quotes to make line breaks possible Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
* added patience note for shareeSascha Wiswedel2019-12-171-2/+2
| | | | | | | | note about incoming transfer taken out by background job resolves #18272 Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
* transfer ownership dialog word choiceSascha Wiswedel2019-12-171-1/+1
| | | | | | | Use Reject instead of Decline Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
* notification polishingSascha Wiswedel2019-12-171-18/+18
| | | | Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
* Dismiss transferownership notification cancels transferRoeland Jago Douma2019-12-111-2/+49
| | | | | | Fixes #18271 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update license headersChristoph Wurst2019-12-051-1/+4
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix mixed up message and subject on notifications for file transferJoas Schilling2019-12-031-10/+14
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add a transfer ownership background jobRoeland Jago Douma2019-12-021-0/+243
This job can be initiated by a user to transfer a file/folder to a target user. The target user will have to accept the job. Once that is done the transfers is initiated in the background. Both parties get notified when the job is done. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>