Browse Source

return no content with status code 204 (#6665)

pull/6673/head
Stefan Melmuk 1 week ago
committed by GitHub
parent
commit
1e1f9957cd
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  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