mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-26 07:19:22 +00:00
Fix error
This commit is contained in:
parent
253d33ef7d
commit
9915e9af23
@ -112,8 +112,11 @@ impl HttpRequestHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Forbidden (401)
|
/// Forbidden (401)
|
||||||
|
///
|
||||||
|
/// I did not the HTTP official specs when I made this choice of using Unauthorized instead
|
||||||
|
/// of Forbidden. Today it would be really complicated to come back...
|
||||||
pub fn forbidden(&mut self, message: String) -> RequestResult {
|
pub fn forbidden(&mut self, message: String) -> RequestResult {
|
||||||
self.response = Some(HttpResponse::Forbidden().json(
|
self.response = Some(HttpResponse::Unauthorized().json(
|
||||||
HttpError::forbidden(&message)));
|
HttpError::forbidden(&message)));
|
||||||
Err(Box::new(ExecError::new(&message)))
|
Err(Box::new(ExecError::new(&message)))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user