Docs, mostly

This commit is contained in:
binwiederhier 2023-06-16 16:55:42 -04:00
parent 6e95d62726
commit c43a1166e2
7 changed files with 59 additions and 64 deletions

View file

@ -521,3 +521,11 @@ func (w *webPushSubscription) ToSubscription() *webpush.Subscription {
},
}
}
func (w *webPushSubscription) Context() log.Context {
return map[string]any{
"web_push_subscription_id": w.ID,
"web_push_subscription_user_id": w.UserID,
"web_push_subscription_endpoint": w.Endpoint,
}
}