🔔 Notifications app for Nextcloud
Перейти к файлу
Joas Schilling 30f65db723
test(CI): Update compile command to check with fork
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-07-16 11:53:56 +02:00
.github test(CI): Update compile command to check with fork 2024-07-16 11:53:56 +02:00
.tx
LICENSES chore: Add further licenses in use 2024-07-11 12:16:22 +02:00
appinfo chore: Convert copyright headers to SPDX format 2024-05-03 14:09:54 +02:00
build-js ci: Add reuse-compliant license file generation 2024-07-11 12:16:19 +02:00
docs chore: Migrate REUSE to TOML 2024-07-11 12:16:18 +02:00
img
js chore(assets): Recompile assets 2024-07-11 10:48:14 +00:00
l10n Fix(l10n): Update translations from Transifex 2024-07-14 01:15:10 +00:00
lib feat: Adapt FakeUser to new IUser 2024-07-05 15:24:15 -07:00
src fix: move creation of browser notifications to the root App 2024-06-13 11:11:35 +02:00
templates/settings chore: Convert copyright headers to SPDX format 2024-05-03 14:09:54 +02:00
tests chore: Convert copyright headers to SPDX format 2024-05-03 14:09:54 +02:00
vendor-bin/openapi-extractor fix(openapi): Update openapi-extractor 2024-04-08 16:24:25 +02:00
.eslintignore chore: Convert copyright headers to SPDX format 2024-05-03 14:09:54 +02:00
.eslintrc.js chore: Convert copyright headers to SPDX format 2024-05-03 14:09:54 +02:00
.gitattributes chore: Convert copyright headers to SPDX format 2024-05-03 14:09:54 +02:00
.gitignore
.l10nignore
.php-cs-fixer.dist.php chore: Convert copyright headers to SPDX format 2024-05-03 14:09:54 +02:00
AUTHORS.md chore: Migrate REUSE to TOML 2024-07-11 12:16:18 +02:00
COPYING
Makefile chore: Add license headers in missing files 2024-04-29 12:31:28 +02:00
README.md chore: Migrate REUSE to TOML 2024-07-11 12:16:18 +02:00
REUSE.toml chore: Migrate REUSE to TOML 2024-07-11 12:16:18 +02:00
babel.config.js chore: Add license headers in missing files 2024-04-29 12:31:28 +02:00
composer.json techdebt(noid): Update nextcloud/coding-standards to 1.2 2024-02-01 15:56:59 +01:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2024-07-14 02:48:01 +00:00
openapi-administration.json chore(api): Regenerate OpenAPI docs 2024-01-24 10:24:40 +01:00
openapi-full.json chore(assets): Recompile OpenAPI 2024-04-08 16:25:18 +02:00
openapi-push.json chore(api): Regenerate OpenAPI docs 2024-01-24 10:24:40 +01:00
openapi.json chore(assets): Recompile OpenAPI 2024-04-08 16:25:18 +02:00
package-lock.json chore(deps): Bump @nextcloud/dialogs from 5.3.4 to 5.3.5 2024-07-06 01:44:53 +00:00
package.json fix: add proper spdx compliant license identifier 2024-07-11 12:16:21 +02:00
psalm.xml fix(CI): Fix path to psalm config.xsd 2023-12-08 15:19:08 +01:00
stylelint.config.js chore: Add license headers in missing files 2024-04-29 12:31:28 +02:00
webpack.js ci: don't create LICENSE.txt files anymore 2024-07-11 12:18:42 +02:00

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.