Change authentication error type to be

This commit is contained in:
many 2021-10-28 16:57:48 +02:00
parent cf67964133
commit 6fea050813
No known key found for this signature in database
GPG Key ID: 2CEF23B75189EACA

View File

@ -41,7 +41,7 @@ impl fmt::Display for ErrorType {
match self {
InternalError => write!(f, "internal"),
InvalidRequestError => write!(f, "invalid_request"),
AuthenticationError => write!(f, "authentication"),
AuthenticationError => write!(f, "auth"),
}
}
}