No description
  • JavaScript 95.4%
  • Vue 3.3%
  • TypeScript 0.6%
  • PHP 0.6%
Find a file
Nextcloud bot 2321cdf246
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-06-12 02:10:19 +00:00
.github Merge pull request #1325 from nextcloud/automated/noid/master-update-workflows 2026-05-21 12:40:29 +02:00
.tx
appinfo feat(deps): Add Nextcloud 35 support on master 2026-05-16 00:29:59 +02:00
build-js
css chore(assets): Recompile assets 2026-04-16 07:12:28 +00:00
img
js chore(assets): Recompile assets 2026-05-21 13:13:14 +00:00
l10n fix(l10n): Update translations from Transifex 2026-06-12 02:10:19 +00:00
lib
LICENSES
src
templates
tests
vendor-bin
.gitattributes
.gitignore
.l10nignore
.php-cs-fixer.dist.php
AUTHORS.md
composer.json
composer.lock
COPYING
eslint.config.js
Makefile
package-lock.json Chore(deps-dev): Bump @nextcloud/stylelint-config from 3.2.1 to 3.2.2 2026-05-23 01:02:47 +00:00
package.json Chore(deps-dev): Bump @nextcloud/stylelint-config from 3.2.1 to 3.2.2 2026-05-23 01:02:47 +00:00
psalm.xml
README.md
REUSE.toml
stylelint.config.cjs
tsconfig.json
vite.config.ts

🔑 Privacy

REUSE status

The privacy center shows you where your data is stored and who can access it, either because you shared with them or because they are administrators.

Installation

This app is shipped and enabled by default in every Nextcloud instance starting with Nextcloud 16. If you wish to disable this app, go to Apps, Active Apps, scroll down to find Privacy and click Disable.

Building the app

The app can be built by using the provided Makefile by running:

make

This requires the following things to be present:

  • make
  • which
  • tar: for building the archive
  • curl: used if phpunit and composer are not installed to fetch them from the web
  • npm: for building and testing everything JS, only required if a package.json is placed inside the js/ folder

The make command will install or update Composer dependencies if a composer.json is present and also npm run build if a package.json is present in the js/ folder. The npm build script should use local paths for build systems and package managers, so people that simply want to build the app won't need to install npm libraries globally, e.g.:

package.json:

"scripts": {
    "test": "node node_modules/gulp-cli/bin/gulp.js karma",
    "prebuild": "npm install && node_modules/bower/bin/bower install && node_modules/bower/bin/bower update",
    "build": "node node_modules/gulp-cli/bin/gulp.js"
}

Publish to App Store

First get an account for the App Store then run:

make && make appstore

The archive is located in build/artifacts/appstore and can then be uploaded to the App Store.

Running tests

You can use the provided Makefile to run all tests by using:

make test

This will run the PHP unit and integration tests and if a package.json is present in the js/ folder will execute npm run test

Of course you can also install PHPUnit and use the configurations directly:

phpunit -c phpunit.xml

or:

phpunit -c phpunit.integration.xml

for integration tests