refactor: send notification.

This commit is contained in:
Bo-Yi Wu
2017-07-24 21:17:11 +08:00
parent 41a8a609be
commit a64fae7de7
2 changed files with 13 additions and 14 deletions

View File

@@ -29,16 +29,10 @@ func (s *server) Send(ctx context.Context, in *pb.NotificationRequest) (*pb.Noti
APIKey: in.Key,
}
success := false
switch notification.Platform {
case gorush.PlatFormIos:
success = gorush.PushToIOS(notification)
case gorush.PlatFormAndroid:
success = gorush.PushToAndroid(notification)
}
gorush.SendNotification(notification)
return &pb.NotificationReply{
Success: success,
Success: false,
Counts: int32(len(notification.Tokens)),
}, nil
}