Example #1
0
        public ActionResult <AdminsPostDTO> AddNewAdminsPost(AdminsPostDTO post)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            adminsPostService.AddNewPost(post);
            pushNotificationsService.SendPostPushNotification(post);
            return(StatusCode(StatusCodes.Status201Created, post));
        }