This commit is contained in:
syuilo 2018-12-20 04:11:10 +09:00
parent e3389e7899
commit 1c93fcb1c4
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 13 additions and 0 deletions

View File

@ -138,6 +138,19 @@ if ((config as any).user_recommendation) {
}
});
}
if ((config as any).sw) {
Meta.findOne({}).then(m => {
if (m != null && m.enableServiceWorker == null) {
Meta.update({}, {
$set: {
enableServiceWorker: true,
swPublicKey: (config as any).sw.public_key,
swPrivateKey: (config as any).sw.private_key
}
});
}
});
}
export type IMeta = {
name?: string;