Merge branch 'master' into develop

Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com>

# Conflicts:
#	front/dist/service-worker-prod.js
This commit is contained in:
Gregoire Parant 2021-08-19 18:31:30 +02:00
commit 86c32cf9ff
2 changed files with 5 additions and 4 deletions

View file

@ -1,4 +1,4 @@
let CACHE_NAME = 'workavdenture-cache-v1.4.14';
let CACHE_NAME = 'workavdenture-cache';
let urlsToCache = [
'/'
];
@ -14,7 +14,8 @@ self.addEventListener('install', function(event) {
});
self.addEventListener('fetch', function(event) {
event.respondWith(
//TODO mamnage fetch data and cache management
/*event.respondWith(
caches.match(event.request)
.then(function(response) {
// Cache hit - return response
@ -44,7 +45,7 @@ self.addEventListener('fetch', function(event) {
}
);
})
);
);*/
});
self.addEventListener('wait', function(event) {

View file

@ -17,7 +17,7 @@ const authToken = "authToken";
const state = "state";
const nonce = "nonce";
const cacheAPIIndex = "workavdenture-cache-v1";
const cacheAPIIndex = "workavdenture-cache-v1.4.14";
class LocalUserStore {
saveUser(localUser: LocalUser) {