Browse Source

return no content with status code 204

pull/6665/head
Stefan Melmuk 5 days ago
parent
commit
ae0da92e39
No known key found for this signature in database GPG Key ID: 817020C608FE9C09
  1. 1
      src/api/identity.rs

1
src/api/identity.rs

@ -919,6 +919,7 @@ struct RegisterVerificationData {
#[derive(rocket::Responder)]
enum RegisterVerificationResponse {
#[response(status = 204)]
NoContent(()),
Token(Json<String>),
}

Loading…
Cancel
Save