Skip to content
Snippets Groups Projects
Unverified Commit 47bd485a authored by syuilo's avatar syuilo
Browse files

Clean up

parent ad869d74
No related branches found
No related tags found
No related merge requests found
......@@ -108,13 +108,5 @@ autoAdmin: true
# port: 9200
# pass: null
# ServiceWorker
#sw:
# # Public key of VAPID
# public_key: example-sw-public-key
#
# # Private key of VAPID
# private_key: example-sw-private-key
# Clustering
#clusterLimit: 1
......@@ -43,17 +43,11 @@ export type Source = {
* Service Worker
*/
sw?: {
public_key: string;
private_key: string;
publicKey: string;
privateKey: string;
};
clusterLimit?: number;
user_recommendation?: {
external: boolean;
engine: string;
timeout: number;
};
};
/**
......
......@@ -7,8 +7,8 @@ if (config.sw) {
// アプリケーションの連絡先と、サーバーサイドの鍵ペアの情報を登録
push.setVapidDetails(
config.url,
config.sw.public_key,
config.sw.private_key);
config.sw.publicKey,
config.sw.privateKey);
}
export default async function(userId: mongo.ObjectID | string, type: string, body?: any) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment