πŸ”” 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 ci: FIx dependabot paths 2024-11-11 06:54:41 +01:00
.tx [tx-robot] Update transifex configuration 2022-10-01 02:46:59 +00:00
LICENSES chore: Add further licenses in use 2024-07-11 12:16:22 +02:00
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 docs: Reformat tables 2024-10-29 12:03:48 +01:00
img Add css variable support and use MD icon 2022-04-22 15:57:01 +02:00
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 chore: Convert copyright headers to SPDX format 2024-05-03 14:09:54 +02:00
tests feat(push): Add option to send a self-test 2024-11-29 15:17:56 +01:00
vendor-bin chore(deps-dev): Bump nextcloud/openapi-extractor 2024-11-16 03:09:06 +00: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 ci: Update to PHPUnit 10 2024-10-02 09:09:00 +02:00
.l10nignore build(reuse): Move license statements closer to the fragments 2024-10-01 11:22:17 +02:00
.php-cs-fixer.dist.php ci: Migrate to vendor-bin 2024-10-01 11:20:19 +02:00
AUTHORS.md chore: Migrate REUSE to TOML 2024-07-11 12:16:18 +02:00
COPYING Add the OCP\Notification\IApp 2015-09-01 13:44:31 +02:00
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 build(reuse): Move license statements closer to the fragments 2024-10-01 11:22:17 +02:00
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 chore(assets): Recompile OpenAPI 2024-11-11 16:14:07 +01:00
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 chore(assets): Recompile OpenAPI 2024-11-11 16:14:07 +01:00
package-lock.json chore(deps): Bump ua-parser-js from 1.0.39 to 2.0.0 2024-11-23 07:07:51 +00:00
package.json chore(deps): Bump ua-parser-js from 1.0.39 to 2.0.0 2024-11-23 07:07:51 +00:00
psalm.xml ci: Migrate to vendor-bin 2024-10-01 11:20:19 +02:00
rector.php fix(cs): Apply coding standard auto fixes 2024-10-02 12:18:13 +02:00
stylelint.config.js chore: Add license headers in missing files 2024-04-29 12:31:28 +02:00
vite.config.mjs build: include license for source maps during build 2024-08-13 00:40:12 +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.