public HttpResponseMessage Post(NewsSentPostModel model)
        {
            List <string> PlayerIds = GetPlayerIds(model.Regions);

            if (PlayerIds.Count > 0)
            {
                var news = newsSvc.Load(model.NewsId);
                if (news != null)
                {
                    OneSignalNotification.SendNotification(news.Title, PlayerIds.ToArray(), news.ID);
                    newsSentSvc.Create(model);
                }
            }

            return(Request.CreateResponse(HttpStatusCode.OK));
        }