mirror of
https://github.com/immich-app/immich.git
synced 2026-07-30 23:50:36 -07:00
fix: minor typos (#30385)
This commit is contained in:
@@ -280,7 +280,7 @@ Configuration of OAuth in Immich System Settings
|
||||
| ---------------------------- | ----------------------------------------------------- |
|
||||
| Issuer URL | `https://<KEYCLOAK_DOMAIN>/realms/<YOUR_REALM>` |
|
||||
| Client ID | immich |
|
||||
| Client Secret | can be optained from Clients -> immich -> Credentials |
|
||||
| Client Secret | can be obtained from Clients -> immich -> Credentials |
|
||||
| Scope | openid email profile |
|
||||
| Signing Algorithm | RS256 |
|
||||
| Storage Label Claim | preferred_username |
|
||||
|
||||
@@ -223,7 +223,7 @@ export const pageUtils = {
|
||||
await section.locator('.w-8').click();
|
||||
},
|
||||
async pauseTestDebug() {
|
||||
console.log('NOTE: pausing test indefinately for debug');
|
||||
console.log('NOTE: pausing test indefinitely for debug');
|
||||
await new Promise(() => void 0);
|
||||
},
|
||||
};
|
||||
|
||||
@@ -40,7 +40,7 @@ describe(PersonRepository.name, () => {
|
||||
boundingBoxY2: 90,
|
||||
});
|
||||
|
||||
// theres a circular dependency between assetFace and person, so we need to update the person after creating the assetFace
|
||||
// there's a circular dependency between assetFace and person, so we need to update the person after creating the assetFace
|
||||
await ctx.database.updateTable('person').set({ faceAssetId: assetFace.id }).where('id', '=', person.id).execute();
|
||||
|
||||
await ctx.newAssetFile({
|
||||
|
||||
Reference in New Issue
Block a user