├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── appstore-build-publish.yml │ ├── command-compile.yml │ ├── dependabot-approve-merge.yml │ ├── fixup.yml │ ├── lint-eslint.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── lint-stylelint.yml │ ├── node.yml │ ├── openapi.yml │ ├── phpunit-sqlite.yml │ ├── pr-feedback.yml │ ├── psalm-matrix.yml │ └── reuse.yml ├── .gitignore ├── .l10nignore ├── .php-cs-fixer.dist.php ├── .tx └── config ├── AUTHORS.md ├── CHANGELOG.md ├── COPYING ├── LICENSES ├── AGPL-3.0-or-later.txt ├── Apache-2.0.txt ├── BSD-3-Clause.txt ├── CC0-1.0.txt ├── GPL-3.0-or-later.txt ├── ISC.txt ├── MIT.txt └── MPL-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── appinfo ├── info.xml └── routes.php ├── babel.config.js ├── composer.json ├── composer.lock ├── css ├── UserApp-jaxjqvto.chunk.css ├── _plugin-vue_export-helper-CfJ8J9U1.chunk.css ├── admin-ClZCGzpw.chunk.css ├── logger-BPXfPjuZ.chunk.css ├── registration-BkdJ1_Yv.chunk.css ├── style-DEOFYSaj.chunk.css ├── terms_of_service-admin.css ├── terms_of_service-public.css ├── terms_of_service-registration.css └── terms_of_service-user.css ├── docs ├── notification-and-settings.png └── popup-dialog.png ├── eslint.config.mjs ├── img ├── app-dark.svg └── app.svg ├── js ├── UserApp-vLzITm54.chunk.mjs ├── UserApp-vLzITm54.chunk.mjs.license ├── UserApp-vLzITm54.chunk.mjs.map ├── UserApp-vLzITm54.chunk.mjs.map.license ├── _plugin-vue_export-helper-BemuwRpB.chunk.mjs ├── _plugin-vue_export-helper-BemuwRpB.chunk.mjs.license ├── _plugin-vue_export-helper-BemuwRpB.chunk.mjs.map ├── _plugin-vue_export-helper-BemuwRpB.chunk.mjs.map.license ├── logger-Dn3kbj54.chunk.mjs ├── logger-Dn3kbj54.chunk.mjs.license ├── logger-Dn3kbj54.chunk.mjs.map ├── logger-Dn3kbj54.chunk.mjs.map.license ├── style-Od1aR-By.chunk.mjs.license ├── style-Od1aR-By.chunk.mjs.map.license ├── terms_of_service-admin.mjs ├── terms_of_service-admin.mjs.license ├── terms_of_service-admin.mjs.map ├── terms_of_service-admin.mjs.map.license ├── terms_of_service-public.mjs ├── terms_of_service-public.mjs.license ├── terms_of_service-public.mjs.map ├── terms_of_service-public.mjs.map.license ├── terms_of_service-registration.mjs ├── terms_of_service-registration.mjs.license ├── terms_of_service-registration.mjs.map ├── terms_of_service-registration.mjs.map.license ├── terms_of_service-user.mjs ├── terms_of_service-user.mjs.license ├── terms_of_service-user.mjs.map └── terms_of_service-user.mjs.map.license ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── br.js ├── br.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_EC.js ├── es_EC.json ├── es_MX.js ├── es_MX.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ko.js ├── ko.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── uz.js ├── uz.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── AppInfo │ └── Application.php ├── BackgroundJobs │ └── CreateNotifications.php ├── Checker.php ├── Command │ ├── DeleteTermsCommand.php │ └── SetTermsCommand.php ├── Controller │ ├── SigningController.php │ └── TermsController.php ├── CountryDetector.php ├── Dav │ └── CheckPlugin.php ├── Db │ ├── Entities │ │ ├── Signatory.php │ │ └── Terms.php │ └── Mapper │ │ ├── CountryMapper.php │ │ ├── LanguageMapper.php │ │ ├── SignatoryMapper.php │ │ └── TermsMapper.php ├── Events │ ├── SignaturesResetEvent.php │ └── TermsCreatedEvent.php ├── Exceptions │ └── TermsNotFoundException.php ├── Filesystem │ ├── CacheWrapper.php │ ├── Helper.php │ └── StorageWrapper.php ├── Listener │ ├── RegistrationIntegration.php │ └── UserDeletedListener.php ├── Migration │ ├── Version1000Date20180503135440.php │ ├── Version1000Date20181122140802.php │ ├── Version1000Date20181122141014.php │ ├── Version1000Date20211209135602.php │ ├── Version1000Date20220111180247.php │ └── Version1000Date20220111180248.php ├── Notifications │ └── Notifier.php ├── PublicCapabilities.php ├── ResponseDefinitions.php ├── Settings │ ├── Admin.php │ └── AdminSection.php └── TermsNotSignedException.php ├── openapi-administration.json ├── openapi-full.json ├── openapi.json ├── package.json ├── psalm.xml ├── rector.php ├── src ├── App.vue ├── RegistrationApp.vue ├── UserApp.vue ├── admin.js ├── components │ ├── ModalContent.vue │ └── TermRow.vue ├── logger.ts ├── public.js ├── registration.js └── user.js ├── stylelint.config.cjs ├── templates └── settings.php ├── tests ├── CountryDetectorTest.php ├── DeleteTermsCommandTest.php ├── SetTermsCommandTest.php ├── bootstrap.php ├── phpunit.xml ├── psalm-baseline.xml ├── psalm-baseline.xml.license └── stubs │ ├── filesystem.php │ └── registration.php ├── tsconfig.json ├── vendor-bin ├── cs-fixer │ ├── composer.json │ └── composer.lock ├── openapi-extractor │ ├── composer.json │ └── composer.lock ├── phpunit │ ├── composer.json │ └── composer.lock ├── psalm │ ├── composer.json │ └── composer.lock └── rector │ ├── composer.json │ └── composer.lock ├── vendor ├── GeoLite2-Country.mmdb ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── ca-bundle │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── res │ │ │ └── cacert.pem │ │ └── src │ │ │ └── CaBundle.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php ├── erusev │ └── parsedown │ │ ├── LICENSE.txt │ │ └── Parsedown.php ├── geoip2 │ └── geoip2 │ │ ├── LICENSE │ │ └── src │ │ ├── Database │ │ └── Reader.php │ │ ├── Exception │ │ ├── AddressNotFoundException.php │ │ ├── AuthenticationException.php │ │ ├── GeoIp2Exception.php │ │ ├── HttpException.php │ │ ├── InvalidRequestException.php │ │ └── OutOfQueriesException.php │ │ ├── Model │ │ ├── AbstractModel.php │ │ ├── AnonymousIp.php │ │ ├── Asn.php │ │ ├── City.php │ │ ├── ConnectionType.php │ │ ├── Country.php │ │ ├── Domain.php │ │ ├── Enterprise.php │ │ ├── Insights.php │ │ └── Isp.php │ │ ├── ProviderInterface.php │ │ ├── Record │ │ ├── AbstractPlaceRecord.php │ │ ├── AbstractRecord.php │ │ ├── City.php │ │ ├── Continent.php │ │ ├── Country.php │ │ ├── Location.php │ │ ├── MaxMind.php │ │ ├── Postal.php │ │ ├── RepresentedCountry.php │ │ ├── Subdivision.php │ │ └── Traits.php │ │ ├── Util.php │ │ └── WebService │ │ └── Client.php ├── maxmind-db │ └── reader │ │ ├── LICENSE │ │ ├── autoload.php │ │ └── src │ │ └── MaxMind │ │ └── Db │ │ ├── Reader.php │ │ └── Reader │ │ ├── Decoder.php │ │ ├── InvalidDatabaseException.php │ │ ├── Metadata.php │ │ └── Util.php └── maxmind │ └── web-service-common │ ├── LICENSE │ └── src │ ├── Exception │ ├── AuthenticationException.php │ ├── HttpException.php │ ├── InsufficientFundsException.php │ ├── InvalidInputException.php │ ├── InvalidRequestException.php │ ├── IpAddressNotFoundException.php │ ├── PermissionRequiredException.php │ └── WebServiceException.php │ └── WebService │ ├── Client.php │ └── Http │ ├── CurlRequest.php │ ├── Request.php │ └── RequestFactory.php ├── vite.config.ts └── webpack.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/command-compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/command-compile.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-approve-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/dependabot-approve-merge.yml -------------------------------------------------------------------------------- /.github/workflows/fixup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/fixup.yml -------------------------------------------------------------------------------- /.github/workflows/lint-eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/lint-eslint.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/lint-stylelint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/lint-stylelint.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.github/workflows/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/openapi.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/phpunit-sqlite.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/psalm-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.gitignore -------------------------------------------------------------------------------- /.l10nignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.l10nignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/LICENSES/ISC.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/MPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/LICENSES/MPL-2.0.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/REUSE.toml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/babel.config.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/composer.lock -------------------------------------------------------------------------------- /css/UserApp-jaxjqvto.chunk.css: -------------------------------------------------------------------------------- 1 | [data-v-aef5ea77] .modal-container{display:flex;height:100%} 2 | -------------------------------------------------------------------------------- /css/_plugin-vue_export-helper-CfJ8J9U1.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/css/_plugin-vue_export-helper-CfJ8J9U1.chunk.css -------------------------------------------------------------------------------- /css/admin-ClZCGzpw.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/css/admin-ClZCGzpw.chunk.css -------------------------------------------------------------------------------- /css/logger-BPXfPjuZ.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/css/logger-BPXfPjuZ.chunk.css -------------------------------------------------------------------------------- /css/registration-BkdJ1_Yv.chunk.css: -------------------------------------------------------------------------------- 1 | [data-v-86b36221] .modal-container{display:flex;height:100%} 2 | -------------------------------------------------------------------------------- /css/style-DEOFYSaj.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/css/style-DEOFYSaj.chunk.css -------------------------------------------------------------------------------- /css/terms_of_service-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/css/terms_of_service-admin.css -------------------------------------------------------------------------------- /css/terms_of_service-public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/css/terms_of_service-public.css -------------------------------------------------------------------------------- /css/terms_of_service-registration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/css/terms_of_service-registration.css -------------------------------------------------------------------------------- /css/terms_of_service-user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/css/terms_of_service-user.css -------------------------------------------------------------------------------- /docs/notification-and-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/docs/notification-and-settings.png -------------------------------------------------------------------------------- /docs/popup-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/docs/popup-dialog.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /img/app-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/img/app-dark.svg -------------------------------------------------------------------------------- /img/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/img/app.svg -------------------------------------------------------------------------------- /js/UserApp-vLzITm54.chunk.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/UserApp-vLzITm54.chunk.mjs -------------------------------------------------------------------------------- /js/UserApp-vLzITm54.chunk.mjs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/UserApp-vLzITm54.chunk.mjs.license -------------------------------------------------------------------------------- /js/UserApp-vLzITm54.chunk.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/UserApp-vLzITm54.chunk.mjs.map -------------------------------------------------------------------------------- /js/UserApp-vLzITm54.chunk.mjs.map.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/UserApp-vLzITm54.chunk.mjs.map.license -------------------------------------------------------------------------------- /js/_plugin-vue_export-helper-BemuwRpB.chunk.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/_plugin-vue_export-helper-BemuwRpB.chunk.mjs -------------------------------------------------------------------------------- /js/_plugin-vue_export-helper-BemuwRpB.chunk.mjs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/_plugin-vue_export-helper-BemuwRpB.chunk.mjs.license -------------------------------------------------------------------------------- /js/_plugin-vue_export-helper-BemuwRpB.chunk.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/_plugin-vue_export-helper-BemuwRpB.chunk.mjs.map -------------------------------------------------------------------------------- /js/_plugin-vue_export-helper-BemuwRpB.chunk.mjs.map.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/_plugin-vue_export-helper-BemuwRpB.chunk.mjs.map.license -------------------------------------------------------------------------------- /js/logger-Dn3kbj54.chunk.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/logger-Dn3kbj54.chunk.mjs -------------------------------------------------------------------------------- /js/logger-Dn3kbj54.chunk.mjs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/logger-Dn3kbj54.chunk.mjs.license -------------------------------------------------------------------------------- /js/logger-Dn3kbj54.chunk.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/logger-Dn3kbj54.chunk.mjs.map -------------------------------------------------------------------------------- /js/logger-Dn3kbj54.chunk.mjs.map.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/logger-Dn3kbj54.chunk.mjs.map.license -------------------------------------------------------------------------------- /js/style-Od1aR-By.chunk.mjs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/style-Od1aR-By.chunk.mjs.license -------------------------------------------------------------------------------- /js/style-Od1aR-By.chunk.mjs.map.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/style-Od1aR-By.chunk.mjs.map.license -------------------------------------------------------------------------------- /js/terms_of_service-admin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-admin.mjs -------------------------------------------------------------------------------- /js/terms_of_service-admin.mjs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-admin.mjs.license -------------------------------------------------------------------------------- /js/terms_of_service-admin.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-admin.mjs.map -------------------------------------------------------------------------------- /js/terms_of_service-admin.mjs.map.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-admin.mjs.map.license -------------------------------------------------------------------------------- /js/terms_of_service-public.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-public.mjs -------------------------------------------------------------------------------- /js/terms_of_service-public.mjs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-public.mjs.license -------------------------------------------------------------------------------- /js/terms_of_service-public.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-public.mjs.map -------------------------------------------------------------------------------- /js/terms_of_service-public.mjs.map.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-public.mjs.map.license -------------------------------------------------------------------------------- /js/terms_of_service-registration.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-registration.mjs -------------------------------------------------------------------------------- /js/terms_of_service-registration.mjs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-registration.mjs.license -------------------------------------------------------------------------------- /js/terms_of_service-registration.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-registration.mjs.map -------------------------------------------------------------------------------- /js/terms_of_service-registration.mjs.map.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-registration.mjs.map.license -------------------------------------------------------------------------------- /js/terms_of_service-user.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-user.mjs -------------------------------------------------------------------------------- /js/terms_of_service-user.mjs.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-user.mjs.license -------------------------------------------------------------------------------- /js/terms_of_service-user.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-user.mjs.map -------------------------------------------------------------------------------- /js/terms_of_service-user.mjs.map.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/js/terms_of_service-user.mjs.map.license -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/af.js -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/af.json -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/si.js -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/si.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/BackgroundJobs/CreateNotifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/BackgroundJobs/CreateNotifications.php -------------------------------------------------------------------------------- /lib/Checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Checker.php -------------------------------------------------------------------------------- /lib/Command/DeleteTermsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Command/DeleteTermsCommand.php -------------------------------------------------------------------------------- /lib/Command/SetTermsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Command/SetTermsCommand.php -------------------------------------------------------------------------------- /lib/Controller/SigningController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Controller/SigningController.php -------------------------------------------------------------------------------- /lib/Controller/TermsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Controller/TermsController.php -------------------------------------------------------------------------------- /lib/CountryDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/CountryDetector.php -------------------------------------------------------------------------------- /lib/Dav/CheckPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Dav/CheckPlugin.php -------------------------------------------------------------------------------- /lib/Db/Entities/Signatory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Db/Entities/Signatory.php -------------------------------------------------------------------------------- /lib/Db/Entities/Terms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Db/Entities/Terms.php -------------------------------------------------------------------------------- /lib/Db/Mapper/CountryMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Db/Mapper/CountryMapper.php -------------------------------------------------------------------------------- /lib/Db/Mapper/LanguageMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Db/Mapper/LanguageMapper.php -------------------------------------------------------------------------------- /lib/Db/Mapper/SignatoryMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Db/Mapper/SignatoryMapper.php -------------------------------------------------------------------------------- /lib/Db/Mapper/TermsMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Db/Mapper/TermsMapper.php -------------------------------------------------------------------------------- /lib/Events/SignaturesResetEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Events/SignaturesResetEvent.php -------------------------------------------------------------------------------- /lib/Events/TermsCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Events/TermsCreatedEvent.php -------------------------------------------------------------------------------- /lib/Exceptions/TermsNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Exceptions/TermsNotFoundException.php -------------------------------------------------------------------------------- /lib/Filesystem/CacheWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Filesystem/CacheWrapper.php -------------------------------------------------------------------------------- /lib/Filesystem/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Filesystem/Helper.php -------------------------------------------------------------------------------- /lib/Filesystem/StorageWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Filesystem/StorageWrapper.php -------------------------------------------------------------------------------- /lib/Listener/RegistrationIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Listener/RegistrationIntegration.php -------------------------------------------------------------------------------- /lib/Listener/UserDeletedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Listener/UserDeletedListener.php -------------------------------------------------------------------------------- /lib/Migration/Version1000Date20180503135440.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Migration/Version1000Date20180503135440.php -------------------------------------------------------------------------------- /lib/Migration/Version1000Date20181122140802.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Migration/Version1000Date20181122140802.php -------------------------------------------------------------------------------- /lib/Migration/Version1000Date20181122141014.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Migration/Version1000Date20181122141014.php -------------------------------------------------------------------------------- /lib/Migration/Version1000Date20211209135602.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Migration/Version1000Date20211209135602.php -------------------------------------------------------------------------------- /lib/Migration/Version1000Date20220111180247.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Migration/Version1000Date20220111180247.php -------------------------------------------------------------------------------- /lib/Migration/Version1000Date20220111180248.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Migration/Version1000Date20220111180248.php -------------------------------------------------------------------------------- /lib/Notifications/Notifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Notifications/Notifier.php -------------------------------------------------------------------------------- /lib/PublicCapabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/PublicCapabilities.php -------------------------------------------------------------------------------- /lib/ResponseDefinitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/ResponseDefinitions.php -------------------------------------------------------------------------------- /lib/Settings/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Settings/Admin.php -------------------------------------------------------------------------------- /lib/Settings/AdminSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/Settings/AdminSection.php -------------------------------------------------------------------------------- /lib/TermsNotSignedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/lib/TermsNotSignedException.php -------------------------------------------------------------------------------- /openapi-administration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/openapi-administration.json -------------------------------------------------------------------------------- /openapi-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/openapi-full.json -------------------------------------------------------------------------------- /openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/openapi.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/package.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/rector.php -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/RegistrationApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/RegistrationApp.vue -------------------------------------------------------------------------------- /src/UserApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/UserApp.vue -------------------------------------------------------------------------------- /src/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/admin.js -------------------------------------------------------------------------------- /src/components/ModalContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/components/ModalContent.vue -------------------------------------------------------------------------------- /src/components/TermRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/components/TermRow.vue -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/public.js -------------------------------------------------------------------------------- /src/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/registration.js -------------------------------------------------------------------------------- /src/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/src/user.js -------------------------------------------------------------------------------- /stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/stylelint.config.cjs -------------------------------------------------------------------------------- /templates/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/templates/settings.php -------------------------------------------------------------------------------- /tests/CountryDetectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tests/CountryDetectorTest.php -------------------------------------------------------------------------------- /tests/DeleteTermsCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tests/DeleteTermsCommandTest.php -------------------------------------------------------------------------------- /tests/SetTermsCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tests/SetTermsCommandTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tests/psalm-baseline.xml -------------------------------------------------------------------------------- /tests/psalm-baseline.xml.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: none 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /tests/stubs/filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tests/stubs/filesystem.php -------------------------------------------------------------------------------- /tests/stubs/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tests/stubs/registration.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor-bin/cs-fixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/cs-fixer/composer.json -------------------------------------------------------------------------------- /vendor-bin/cs-fixer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/cs-fixer/composer.lock -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/openapi-extractor/composer.json -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/openapi-extractor/composer.lock -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/phpunit/composer.json -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/phpunit/composer.lock -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/psalm/composer.json -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/psalm/composer.lock -------------------------------------------------------------------------------- /vendor-bin/rector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/rector/composer.json -------------------------------------------------------------------------------- /vendor-bin/rector/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor-bin/rector/composer.lock -------------------------------------------------------------------------------- /vendor/GeoLite2-Country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/GeoLite2-Country.mmdb -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/ca-bundle/LICENSE -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/ca-bundle/README.md -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/ca-bundle/composer.json -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/res/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/ca-bundle/res/cacert.pem -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/src/CaBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/ca-bundle/src/CaBundle.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/erusev/parsedown/LICENSE.txt -------------------------------------------------------------------------------- /vendor/erusev/parsedown/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/erusev/parsedown/Parsedown.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/LICENSE -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Database/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Database/Reader.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Exception/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Exception/HttpException.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/AbstractModel.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/AnonymousIp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/AnonymousIp.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/Asn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/Asn.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/City.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/ConnectionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/ConnectionType.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/Country.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/Domain.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/Enterprise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/Enterprise.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/Insights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/Insights.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Model/Isp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Model/Isp.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/ProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/ProviderInterface.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/AbstractRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/AbstractRecord.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/City.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/Continent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/Continent.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/Country.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/Location.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/MaxMind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/MaxMind.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/Postal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/Postal.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/RepresentedCountry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/Subdivision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/Subdivision.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Record/Traits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Record/Traits.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/Util.php -------------------------------------------------------------------------------- /vendor/geoip2/geoip2/src/WebService/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/geoip2/geoip2/src/WebService/Client.php -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind-db/reader/LICENSE -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind-db/reader/autoload.php -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/LICENSE -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/Exception/HttpException.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/Exception/WebServiceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/WebService/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/WebService/Client.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/WebService/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/WebService/Http/Request.php -------------------------------------------------------------------------------- /vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/vite.config.ts -------------------------------------------------------------------------------- /webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/terms_of_service/HEAD/webpack.js --------------------------------------------------------------------------------