diff options
| author | おさむのひと <46447427+samunohito@users.noreply.github.com> | 2024-04-19 15:22:23 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-19 15:22:23 +0900 |
| commit | cd7f7271ca5595cae95f6fb0280fac9dee77d751 (patch) | |
| tree | 17d139a56b8c9285c3e86a31ab79aca0c528c809 /packages/backend/src/misc | |
| parent | :art: (ページ表示部上部のボタン順序を変更) (diff) | |
| download | sharkey-cd7f7271ca5595cae95f6fb0280fac9dee77d751.tar.gz sharkey-cd7f7271ca5595cae95f6fb0280fac9dee77d751.tar.bz2 sharkey-cd7f7271ca5595cae95f6fb0280fac9dee77d751.zip | |
enhance: 新しいコンディショナルロール条件の実装 (#13732)
* enhance: 新しいコンディショナルロールの実装
* fix: CHANGELOG.md
Diffstat (limited to 'packages/backend/src/misc')
| -rw-r--r-- | packages/backend/src/misc/json-schema.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/backend/src/misc/json-schema.ts b/packages/backend/src/misc/json-schema.ts index 46b0bb2fab..a620d7c94b 100644 --- a/packages/backend/src/misc/json-schema.ts +++ b/packages/backend/src/misc/json-schema.ts @@ -48,6 +48,7 @@ import { packedRoleCondFormulaValueCreatedSchema, packedRoleCondFormulaFollowersOrFollowingOrNotesSchema, packedRoleCondFormulaValueSchema, + packedRoleCondFormulaValueUserSettingBooleanSchema, } from '@/models/json-schema/role.js'; import { packedAdSchema } from '@/models/json-schema/ad.js'; import { packedReversiGameLiteSchema, packedReversiGameDetailedSchema } from '@/models/json-schema/reversi-game.js'; @@ -97,6 +98,7 @@ export const refs = { RoleCondFormulaLogics: packedRoleCondFormulaLogicsSchema, RoleCondFormulaValueNot: packedRoleCondFormulaValueNot, RoleCondFormulaValueIsLocalOrRemote: packedRoleCondFormulaValueIsLocalOrRemoteSchema, + RoleCondFormulaValueUserSettingBooleanSchema: packedRoleCondFormulaValueUserSettingBooleanSchema, RoleCondFormulaValueAssignedRole: packedRoleCondFormulaValueAssignedRoleSchema, RoleCondFormulaValueCreated: packedRoleCondFormulaValueCreatedSchema, RoleCondFormulaFollowersOrFollowingOrNotes: packedRoleCondFormulaFollowersOrFollowingOrNotesSchema, |