hotfix: switch to serde_json::Value to get rageshake working
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
TODO: switch to concrete datatype
This commit is contained in:
parent
a8b9892de4
commit
f02627f489
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ struct Report {
|
|||
async fn upload(
|
||||
_req: HttpRequest,
|
||||
ctx: AppCtx,
|
||||
payload: web::Json<Report>,
|
||||
payload: web::Json<serde_json::Value>,
|
||||
) -> Result<impl Responder, Error> {
|
||||
ctx.gitea.report(&payload).await;
|
||||
Ok(HttpResponse::Ok())
|
||||
|
|
Reference in a new issue