public async Task <ActionResult <IEnumerable <GoalDTO> > > GetActiveGoals()
 {
     return(Ok(await goalRepository.GetActiveGoals()));
 }