diff options
Diffstat (limited to 'src/errors.rs')
-rw-r--r-- | src/errors.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/errors.rs b/src/errors.rs index fafe0b0..1b9a802 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -42,10 +42,7 @@ impl IntoResponse for AppError { "Token creation error".to_string(), ), AppError::InvalidToken => (StatusCode::BAD_REQUEST, "Invalid token".to_string()), - AppError::Unauthorized => ( - StatusCode::UNAUTHORIZED, - "Can't perform this action".to_string(), - ), + AppError::Unauthorized => (StatusCode::UNAUTHORIZED, "Unauthorized".to_string()), }; let body = Json(json!({ |