public async Task <ActionResult> AddSchedule(Guid groupId, string teamName, [FromBody] AddSchedule command)
        {
            command.GroupId  = groupId;
            command.UserId   = User.GetUserId();
            command.TeamName = teamName;
            await _scheduleService.AddTeamSchedule(command);

            return(Ok());
        }