No description
Find a file
github-actions[bot] 2764b0ecc7
Merge pull request #2702 from nextcloud/dependabot/npm_and_yarn/nextcloud/dialogs-7.2.0
build(deps): Bump @nextcloud/dialogs from 7.1.0 to 7.2.0
2025-12-20 08:43:00 +00:00
.github chore: update workflows 2025-11-24 10:18:31 +01:00
.tx
appinfo feat(deps): Add Nextcloud 33 support on master 2025-09-04 12:12:09 +02:00
css chore(assets): Recompile assets 2025-12-20 08:42:02 +00:00
docs docs: Reformat tables 2024-10-29 12:03:48 +01:00
img fix: use outline svg icon for notifications 2025-08-28 14:37:51 +02:00
js chore(assets): Recompile assets 2025-12-20 08:42:02 +00:00
l10n fix(l10n): Update translations from Transifex 2025-12-18 01:19:19 +00:00
lib fix: Remove unused import 2025-08-28 11:18:28 +02:00
LICENSES chore: remove BSD-2-Clause license 2025-06-23 09:04:14 +02:00
src fix(multi-tab): Fix interactions when multiple tabs are active 2025-10-13 15:19:39 +02:00
templates/settings
tests build(deps-dev): Bump behat/behat in /tests/Integration 2025-12-13 02:05:51 +00:00
vendor-bin Merge pull request #2691 from nextcloud/dependabot/composer/vendor-bin/psalm/vimeo/psalm-6.14.2 2025-12-13 14:17:58 +00:00
.gitattributes
.gitignore ci: Update to PHPUnit 10 2024-10-02 09:09:00 +02:00
.l10nignore
.php-cs-fixer.dist.php
AUTHORS.md
composer.json build(deps): Bump dependencies to PHP 8.2 2025-11-14 15:03:05 +01:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2025-12-19 02:45:39 +00:00
COPYING
eslint.config.mjs chore(vue3): update eslint config for Vue3 features support 2025-06-23 08:53:21 +02:00
Makefile
openapi-administration.json fix(openapi): Regenerate OpenAPI assets 2025-08-30 21:02:55 +00:00
openapi-full.json fix(openapi): Regenerate OpenAPI assets 2025-08-30 21:02:55 +00:00
openapi-push.json fix(openapi): Regenerate OpenAPI assets 2025-08-30 21:02:55 +00:00
openapi.json fix(openapi): Regenerate OpenAPI assets 2025-08-30 21:02:55 +00:00
package-lock.json build(deps): Bump @nextcloud/dialogs from 7.1.0 to 7.2.0 2025-12-20 02:03:51 +00:00
package.json build(deps): Bump @nextcloud/dialogs from 7.1.0 to 7.2.0 2025-12-20 02:03:51 +00:00
psalm.xml chore(psalm): bump minimum PHP version to 8.2 2025-10-06 17:30:25 +02:00
README.md
rector.php fix(cs): Apply coding standard auto fixes 2024-10-02 12:18:13 +02:00
REUSE.toml ci(performance): Fix performance test and ease debugging it 2025-02-24 23:07:26 +01:00
stylelint.config.js
vite.config.mjs chore(eslint): update scripts to cover config files 2025-06-16 13:02:50 +02:00

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.