implements the get_tasks

This commit is contained in:
Tamo
2022-09-22 20:02:55 +02:00
committed by Clément Renault
parent 19154e48fe
commit cb4feabca2
7 changed files with 131 additions and 22 deletions

View File

@ -51,8 +51,8 @@ impl ErrorCode for IndexControllerError {
IndexControllerError::DocumentFormatError(e) => e.error_code(),
IndexControllerError::MissingPayload(_) => Code::MissingPayload,
IndexControllerError::PayloadTooLarge => Code::PayloadTooLarge,
IndexControllerError::IndexResolver(_) => todo!(),
IndexControllerError::IndexError(_) => todo!(),
IndexControllerError::IndexResolver(e) => e.error_code(),
IndexControllerError::IndexError(e) => e.error_code(),
}
}
}