vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 3d1fc0f2e8027f729e7581b8112f0137d5216cd8
parent f1ade6263805d1513e26e9dc1c6b6a8e56e1f909
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Wed, 15 Aug 2018 15:11:45 +0200

Merge pull request #136 from mprasil/disable_analytics

Remove analytics from Vault
Diffstat:
Mdocker/set-vault-baseurl.patch | 10+++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/docker/set-vault-baseurl.patch b/docker/set-vault-baseurl.patch @@ -1,6 +1,14 @@ --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts -@@ -119,10 +119,8 @@ +@@ -116,17 +116,15 @@ const exportService = new ExportService(folderService, cipherService, apiService + const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService); + const auditService = new AuditService(cryptoFunctionService, apiService); + +-const analytics = new Analytics(window, () => platformUtilsService.isDev() || platformUtilsService.isSelfHost(), ++const analytics = new Analytics(window, () => platformUtilsService.isDev() || platformUtilsService.isSelfHost() || true, + platformUtilsService, storageService, appIdService); + containerService.attachToWindow(window); + export function initFactory(): Function { return async () => { await (storageService as HtmlStorageService).init();