mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
Fix typo in error message: 'Unkown' -> 'Unknown'
This commit is contained in:
@ -101,7 +101,7 @@ public class OrganizationConnectionsController : Controller
|
|||||||
case OrganizationConnectionType.Scim:
|
case OrganizationConnectionType.Scim:
|
||||||
return await CreateOrUpdateOrganizationConnectionAsync<ScimConfig>(organizationConnectionId, model);
|
return await CreateOrUpdateOrganizationConnectionAsync<ScimConfig>(organizationConnectionId, model);
|
||||||
default:
|
default:
|
||||||
throw new BadRequestException($"Unkown Organization connection Type: {model.Type}");
|
throw new BadRequestException($"Unknown Organization connection Type: {model.Type}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -127,7 +127,7 @@ public class OrganizationConnectionsController : Controller
|
|||||||
case OrganizationConnectionType.Scim:
|
case OrganizationConnectionType.Scim:
|
||||||
return new OrganizationConnectionResponseModel(connection, typeof(ScimConfig));
|
return new OrganizationConnectionResponseModel(connection, typeof(ScimConfig));
|
||||||
default:
|
default:
|
||||||
throw new BadRequestException($"Unkown Organization connection Type: {type}");
|
throw new BadRequestException($"Unknown Organization connection Type: {type}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user