Skip to content

Commit

Permalink
fix: featuresの命名が揃っていない
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 committed Apr 17, 2024
1 parent 3c1d39f commit 490bd1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/core/entities/MetaEntityService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export class MetaEntityService {
features: {
localTimeline: instance.policies.ltlAvailable,
globalTimeline: instance.policies.gtlAvailable,
vrtlAvailable: instance.policies.vrtlAvailable,
vmimiRelayTimeline: instance.policies.vrtlAvailable,
registration: !instance.disableRegistration,
emailRequiredForSignup: instance.emailRequiredForSignup,
hcaptcha: instance.enableHcaptcha,
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/models/json-schema/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export const packedMetaDetailedOnlySchema = {
type: 'boolean',
optional: false, nullable: false,
},
vrtlAvailable: {
vmimiRelayTimeline: {
type: 'boolean',
optional: false, nullable: false,
},
Expand Down
2 changes: 1 addition & 1 deletion packages/misskey-js/src/autogen/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4840,7 +4840,7 @@ export type components = {
emailRequiredForSignup: boolean;
localTimeline: boolean;
globalTimeline: boolean;
vrtlAvailable: boolean;
vmimiRelayTimeline: boolean;
hcaptcha: boolean;
turnstile: boolean;
recaptcha: boolean;
Expand Down

0 comments on commit 490bd1f

Please sign in to comment.