return courseService
      .getCourse(courseId)
      .then(course => reply(courseSerializer.serialize(course)))
      .catch(err => {
        if (err instanceof NotFoundError) {