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 039860f87e05999d143fb12cde56a4e5baf1ba1a
parent 9511456ded780ae14fd9fca9dee672c8bfe3b0f8
Author: Miroslav Prasil <miroslav@prasil.info>
Date:   Thu,  9 Aug 2018 13:38:40 +0100

Fix patch file for v2.1.1

Diffstat:
Mdocker/set-vault-baseurl.patch | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/docker/set-vault-baseurl.patch b/docker/set-vault-baseurl.patch @@ -1,16 +1,15 @@ --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts -@@ -114,10 +114,9 @@ containerService.attachToWindow(window); - +@@ -119,10 +119,8 @@ export function initFactory(): Function { return async () => { + await (storageService as HtmlStorageService).init(); - const isDev = platformUtilsService.isDev(); - if (!isDev && platformUtilsService.isSelfHost()) { - environmentService.baseUrl = window.location.origin; - } + const isDev = false; + environmentService.baseUrl = window.location.origin; -+ await apiService.setUrls({ base: isDev ? null : window.location.origin, api: isDev ? 'http://localhost:4000' : null,