No description
  • JavaScript 79.8%
  • PHP 15.3%
  • TypeScript 2.6%
  • Vue 2%
  • CSS 0.2%
Find a file
Nextcloud bot 3b92c8496a
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-06-12 00:51:37 +00:00
.github ci(deps): bump alexwilson/enable-github-automerge-action 2026-06-06 01:11:59 +00:00
.tx
appinfo feat(deps): Add Nextcloud 35 support on master 2026-05-18 16:25:43 +02:00
css fix: unify file flags 2024-10-11 09:06:45 +02:00
docs docs: explain the optional dedicated activity database 2026-05-05 19:36:50 +01:00
img feat(stream): autoload newer activities 2026-04-01 12:08:26 +02:00
js fix(ActivityAppNavigation): use correct icon filter for NC34+ active nav items 2026-06-03 10:56:01 +00:00
l10n fix(l10n): Update translations from Transifex 2026-06-12 00:51:37 +00:00
lib perf(mailqueue): cover amq_latest_send in the affecteduser index 2026-06-04 10:48:46 +02:00
LICENSES chore: add reuse licenses 2025-10-29 13:45:31 +01:00
playwright fix(playwright): apply server optimizations from nextcloud/server 2026-05-25 15:50:36 +02:00
src fix(ActivityAppNavigation): use correct icon filter for NC34+ active nav items 2026-06-03 10:56:01 +00:00
templates fix: unify file flags 2024-10-11 09:06:45 +02:00
tests perf(mailqueue): cover amq_latest_send in the affecteduser index 2026-06-04 10:48:46 +02:00
vendor-bin chore(deps-dev): bump vimeo/psalm in /vendor-bin/psalm 2026-03-28 02:03:58 +00:00
.gitattributes
.gitignore feat: add download counter to activity sidebar 2026-04-08 17:40:55 +00:00
.l10nignore
.php-cs-fixer.dist.php chore: Run php cs fixer 2024-08-26 12:52:33 +02:00
AUTHORS.md
composer.json test: upgrade to PHPUnit 11 2025-11-12 16:51:55 +01:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2026-06-07 03:24:03 +00:00
CONTRIBUTING.md
eslint.config.js chore: Run npm lint:fix and fix reported warnings 2025-06-04 17:09:29 +02:00
Makefile
package-lock.json ci(deps-dev): bump the dev group with 3 updates 2026-06-06 01:03:25 +00:00
package.json ci(deps-dev): bump the dev group with 3 updates 2026-06-06 01:03:25 +00:00
playwright.config.ts fix(playwright): apply server optimizations from nextcloud/server 2026-05-25 15:50:36 +02:00
pr-body.md fix(deps): Fix npm audit 2026-05-31 04:18:49 +00:00
psalm.xml chore: update psalm min php version 2025-10-14 15:44:57 +02:00
README.md docs: explain the optional dedicated activity database 2026-05-05 19:36:50 +01:00
REUSE.toml fix(reuse): exclude pr-body.md from REUSE compliance check 2026-05-26 18:31:00 +02:00
stylelint.config.cjs
tsconfig.json chore: Update dependencies for vue3 2025-06-04 17:09:29 +02:00
vite.config.ts refactor: adjust for Nextcloud 33 new files sidebar API 2026-01-05 16:28:59 +01:00

Nextcloud Activity App

REUSE status

This app allows people to see actions related to their files and data in Nextcloud. Each person can configure their individual activity settings in the personal settings, to choose which activity should be pushed to mobile phones, send via email or whether a daily summary is sent each morning.

🏗 Development setup

  1. ☁ Clone this app into the apps folder of your Nextcloud: git clone https://github.com/nextcloud/activity.git
  2. 🛠️ Run make dev-setup to install the development dependencies
  3. Enable the app through the app management of your Nextcloud
  4. 🏗️ Make your changes
  5. 🤖 Compile the frontend with make build-js-production
  6. 🚀 Send your pull request

API for other apps to interact with activities

In Nextcloud 11 the old extension API was replaced by 3 new interfaces, to better split the functionality up. Documentation for each of those can be found in the docs/ folder:

  • Create - an activity and store it in the app
  • Provider - translate and render activities
  • Setting - allow users to control what they want to see in their stream or mail
  • Filter - allow to reduce the stream in the web UI by app or setting

Administration