Skip to content

Commit

Permalink
Add default value for jwt_siging_key
Browse files Browse the repository at this point in the history
  • Loading branch information
Ohasumi committed Nov 28, 2024
1 parent a808472 commit 7727802
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,10 @@ export const configSchema = schema.object({
}),
}),
kerberos: schema.object({
jwt_siging_key: schema.string({ minLength: 32 }),
jwt_siging_key: schema.string({

Check failure on line 148 in server/index.ts

View workflow job for this annotation

GitHub Actions / Run unit tests (ubuntu-latest)

Delete `·`

Check failure on line 148 in server/index.ts

View workflow job for this annotation

GitHub Actions / Run unit tests (windows-latest)

Delete `·`
defaultValue: '00000000000000000000000000000000',

Check failure on line 149 in server/index.ts

View workflow job for this annotation

GitHub Actions / Run unit tests (ubuntu-latest)

Delete `·`

Check failure on line 149 in server/index.ts

View workflow job for this annotation

GitHub Actions / Run unit tests (windows-latest)

Delete `·`
minLength: 32

Check failure on line 150 in server/index.ts

View workflow job for this annotation

GitHub Actions / Run unit tests (ubuntu-latest)

Replace `·` with `,`

Check failure on line 150 in server/index.ts

View workflow job for this annotation

GitHub Actions / Run unit tests (windows-latest)

Replace `·` with `,`
}),
}),
multitenancy: schema.object({
enabled: schema.boolean({ defaultValue: false }),
Expand Down

0 comments on commit 7727802

Please sign in to comment.