chore: Use Signature
as a openAPI parameter
Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
parent
1d0268c501
commit
531e27ab2c
1 changed files with 3 additions and 3 deletions
|
@ -45,7 +45,7 @@ use crate::{
|
|||
(status_code = 500, description = "Internal server error", content_type = "application/json", body = MessageSchema),
|
||||
),
|
||||
parameters(
|
||||
("X-OTMP-SIGNATURE" = Signature, Header, description = "Signature of the request"),
|
||||
Signature,
|
||||
("X-OTMP-PUBLIC" = PublicKey, Header, description = "Public key of the sender"),
|
||||
),
|
||||
)]
|
||||
|
@ -80,7 +80,7 @@ pub async fn register(req: &Request, depot: &mut Depot) -> ApiResult<EmptySchema
|
|||
),
|
||||
parameters(
|
||||
("X-OTMP-PUBLIC" = PublicKey, Header, description = "Public key of the sender"),
|
||||
("X-OTMP-SIGNATURE" = Signature, Header, description = "Signature of the request"),
|
||||
Signature,
|
||||
),
|
||||
)]
|
||||
async fn user_whitelist(
|
||||
|
@ -119,7 +119,7 @@ async fn user_whitelist(
|
|||
),
|
||||
parameters(
|
||||
("X-OTMP-PUBLIC" = PublicKey, Header, description = "Public key of the sender"),
|
||||
("X-OTMP-SIGNATURE" = Signature, Header, description = "Signature of the request"),
|
||||
Signature,
|
||||
),
|
||||
)]
|
||||
async fn user_blacklist(
|
||||
|
|
Loading…
Reference in a new issue