🔔 Notifications app for Nextcloud
Перейти к файлу
Nextcloud bot e473df5a91
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-12-03 01:22:43 +00:00
.github
.tx
LICENSES
appinfo feat(push): Add option to send a self-test 2024-11-29 15:17:56 +01:00
css chore(assets): Recompile assets 2024-11-26 15:38:58 +00:00
docs
img
js chore(assets): Recompile assets 2024-11-26 15:38:58 +00:00
l10n Fix(l10n): Update translations from Transifex 2024-12-03 01:22:43 +00:00
lib feat(push): Add option to send a self-test 2024-11-29 15:17:56 +01:00
src fix: migrate 'ua-parser-js' to 2.0.0 2024-11-26 16:17:13 +01:00
templates/settings
tests feat(push): Add option to send a self-test 2024-11-29 15:17:56 +01:00
vendor-bin
.eslintignore
.eslintrc.js
.gitattributes
.gitignore
.l10nignore
.php-cs-fixer.dist.php
AUTHORS.md
COPYING
Makefile
README.md
REUSE.toml
composer.json feat(push): Add option to send a self-test 2024-11-29 15:17:56 +01:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2024-12-01 03:17:06 +00:00
openapi-administration.json
openapi-full.json feat(push): Add option to send a self-test 2024-11-29 15:17:56 +01:00
openapi-push.json feat(push): Add option to send a self-test 2024-11-29 15:17:56 +01:00
openapi.json
package-lock.json
package.json
psalm.xml
rector.php
stylelint.config.js
vite.config.mjs

README.md

Notifications

REUSE status

This app provides a backend and frontend for the notification API available in Nextcloud. The API is used by other apps to notify users in the web UI and sync clients about various things. Some examples are:

Screenshot

Screenshot of the notification icon and dropdown

Developers

Install and enable the notifications app

  • Clone this app into the "apps" folder of your nextcloud instance.
git clone https://github.com/nextcloud/notifications.git
  • Enable the app (Log in as the admin into your nextcloud, go to "+ Apps" and search for the "notifications" app to enable it).

  • When you modified the code make sure to execute make dev-setup from within the app´s root folder to install develop dependencies and afterwards build the javascript with make build-js-production.

Creating notifications for your app

For information how to make your app interact with the notifications app, see Sending and processing/"mark as read" notifications as a Nextcloud App in the wiki.

If you want to present notifications as a client, see Reading and deleting notifications as an Nextcloud Client.