Skip to content

Commit

Permalink
Merge pull request #985 from traPtitech/chore/refactor-valibot
Browse files Browse the repository at this point in the history
valibot 周りのちょっとしたリファクタリング
  • Loading branch information
cp-20 authored Dec 14, 2024
2 parents f57e370 + 283db3e commit a6b91b8
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions dashboard/src/features/application/schema/websiteSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,8 @@ export const createWebsiteSchema = v.pipe(
https: stringBooleanSchema,
// Static App ではフォームに表示されないので undefined になってしまう
// そのままだと invalid になって設定を変更できないのでデフォルト値を設定する
h2c: v.pipe(
v.optional(v.boolean()),
v.transform((input) => input ?? false),
),
// httpPort: v.pipe(v.number(), v.integer()),
httpPort: v.pipe(
v.optional(v.number()),
v.transform((input) => input ?? 80),
v.integer(),
),
h2c: v.optional(v.boolean(), false),
httpPort: v.optional(v.pipe(v.number(), v.integer()), 80),
authentication: authenticationSchema,
}),
// wildcard domainが選択されている場合サブドメインは空であってはならない
Expand Down

0 comments on commit a6b91b8

Please sign in to comment.