feat(API-keys): Change immutable_field error message

Change the immutable_field error message to fit the recent changes in the spec:
aa0a148ee3..84a9baff68
This commit is contained in:
ManyTheFish 2022-06-02 11:11:07 +02:00
parent 08d72e32a4
commit 9eea142e2b
2 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ pub enum AuthControllerError {
ApiKeyNotFound(String),
#[error("`uid` field value `{0}` is already an existing API key.")]
ApiKeyAlreadyExists(String),
#[error("`{0}` field cannot be modified for the given resource.")]
#[error("The `{0}` field cannot be modified for the given resource.")]
ImmutableField(String),
#[error("Internal error: {0}")]
Internal(Box<dyn Error + Send + Sync + 'static>),

View File

@ -1150,7 +1150,7 @@ async fn error_patch_api_key_indexes() {
let (response, code) = server.patch_api_key(&uid, content).await;
assert_eq!(400, code, "{:?}", &response);
let expected = json!({"message": "`indexes` field cannot be modified for the given resource.",
let expected = json!({"message": "The `indexes` field cannot be modified for the given resource.",
"code": "immutable_field",
"type": "invalid_request",
"link": "https://docs.meilisearch.com/errors#immutable_field"
@ -1206,7 +1206,7 @@ async fn error_patch_api_key_actions() {
let (response, code) = server.patch_api_key(&uid, content).await;
assert_eq!(400, code, "{:?}", &response);
let expected = json!({"message": "`actions` field cannot be modified for the given resource.",
let expected = json!({"message": "The `actions` field cannot be modified for the given resource.",
"code": "immutable_field",
"type": "invalid_request",
"link": "https://docs.meilisearch.com/errors#immutable_field"
@ -1254,7 +1254,7 @@ async fn error_patch_api_key_expiration_date() {
let (response, code) = server.patch_api_key(&uid, content).await;
assert_eq!(400, code, "{:?}", &response);
let expected = json!({"message": "`expiresAt` field cannot be modified for the given resource.",
let expected = json!({"message": "The `expiresAt` field cannot be modified for the given resource.",
"code": "immutable_field",
"type": "invalid_request",
"link": "https://docs.meilisearch.com/errors#immutable_field"