Update push notification usage

This commit is contained in:
Eduard Urbach 2018-02-27 13:29:47 +01:00
parent 771a222787
commit e8c2a6ff75
4 changed files with 5 additions and 8 deletions

View File

@ -55,7 +55,7 @@ func testPackage(pkg string) {
// Send notification to the admin
admin, _ := arn.GetUser("4J6qpK1ve")
admin.SendNotification(&arn.Notification{
admin.SendNotification(&arn.PushNotification{
Title: pkg,
Message: "Test failed",
Link: "https://" + pkg,

View File

@ -16,13 +16,11 @@ func Test(ctx *aero.Context) string {
return ctx.Error(http.StatusBadRequest, "Not logged in", nil)
}
notification := &arn.Notification{
user.SendNotification(&arn.PushNotification{
Title: "Anime Notifier",
Message: "Yay, it works!",
Icon: "https://" + ctx.App.Config.Domain + "/images/brand/220.png",
}
user.SendNotification(notification)
})
return "ok"
}

View File

@ -85,7 +85,7 @@ func Success(ctx *aero.Context) string {
// Notify admin
go func() {
admin, _ := arn.GetUser(adminID)
admin.SendNotification(&arn.Notification{
admin.SendNotification(&arn.PushNotification{
Title: user.Nick + " bought " + strconv.Itoa(payment.Gems()) + " gems",
Message: user.Nick + " paid " + payment.Amount + " " + payment.Currency + " making his new balance " + strconv.Itoa(user.Balance),
Icon: user.LargeAvatar(),

View File

@ -200,9 +200,8 @@ class MyServiceWorker {
return self.registration.showNotification(payload.title, {
body: payload.message,
icon: payload.icon,
image: payload.image,
data: payload.link,
badge: "https://notify.moe/brand/64.png"
badge: "https://media.notify.moe/images/brand/64.png"
})
}