public async Task <ActionResult <IEnumerable <UserNotification> > > GetUserNotifications(Guid userId)
 {
     return(CustomResponse(
                await _notificationsService.GetAllUnreadUserNotifications(userId)
                ));
 }