예제 #1
0
        public IActionResult NotifyAll([FromBody] PushNotification notification)
        {
            var payload = new {
                Notification = new {
                    notification.Title,
                    notification.Body,
                    Icon = "/assets/icon-144x144.png"
                }
            };

            _pushService.NotifyAll(payload);

            return(Ok());
        }