2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-02-04 19:15:09 -06:00
|
|
|
import { Entity, Column, PrimaryColumn, ManyToOne, JoinColumn } from 'typeorm';
|
2023-09-19 21:33:36 -05:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 03:51:28 -05:00
|
|
|
import { MiUser } from './User.js';
|
2019-04-07 07:50:36 -05:00
|
|
|
|
2023-08-16 03:51:28 -05:00
|
|
|
@Entity('meta')
|
|
|
|
export class MiMeta {
|
2019-04-16 10:33:02 -05:00
|
|
|
@PrimaryColumn({
|
|
|
|
type: 'varchar',
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 32,
|
2019-04-16 10:33:02 -05:00
|
|
|
})
|
2019-04-07 07:50:36 -05:00
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024, nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public name: string | null;
|
|
|
|
|
2023-09-22 22:38:20 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 64, nullable: true,
|
|
|
|
})
|
|
|
|
public shortName: string | null;
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 1024, nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public description: string | null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* メンテナの名前
|
|
|
|
*/
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024, nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public maintainerName: string | null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* メンテナの連絡先
|
|
|
|
*/
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024, nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public maintainerEmail: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public disableRegistration: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024, array: true, default: '{}',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public langs: string[];
|
|
|
|
|
2019-05-10 03:30:28 -05:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024, array: true, default: '{}',
|
2019-05-10 03:30:28 -05:00
|
|
|
})
|
|
|
|
public pinnedUsers: string[];
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024, array: true, default: '{}',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public hiddenTags: string[];
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024, array: true, default: '{}',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public blockedHosts: string[];
|
|
|
|
|
2023-03-13 03:37:22 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024, array: true, default: '{}',
|
|
|
|
})
|
|
|
|
public sensitiveWords: string[];
|
|
|
|
|
2023-10-16 06:11:27 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024, array: true, default: '{}',
|
|
|
|
})
|
|
|
|
public silencedHosts: string[];
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2022-02-09 06:25:48 -06:00
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public themeColor: string | null;
|
|
|
|
|
2020-11-16 23:59:15 -06:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2019-04-07 07:50:36 -05:00
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public mascotImageUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public bannerUrl: string | null;
|
|
|
|
|
2020-11-25 06:31:34 -06:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2020-11-25 06:31:34 -06:00
|
|
|
})
|
|
|
|
public backgroundImageUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2020-11-25 06:31:34 -06:00
|
|
|
})
|
|
|
|
public logoImageUrl: string | null;
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2019-04-07 07:50:36 -05:00
|
|
|
nullable: true,
|
|
|
|
})
|
2023-06-09 00:00:53 -05:00
|
|
|
public iconUrl: string | null;
|
2019-04-07 07:50:36 -05:00
|
|
|
|
2023-09-16 03:05:17 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public app192IconUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public app512IconUrl: string | null;
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
2023-06-09 00:00:53 -05:00
|
|
|
public serverErrorImageUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public notFoundImageUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public infoImageUrl: string | null;
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
2023-08-05 00:03:01 -05:00
|
|
|
default: false,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public cacheRemoteFiles: boolean;
|
|
|
|
|
2023-07-15 06:12:20 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public cacheRemoteSensitiveFiles: boolean;
|
|
|
|
|
2020-02-04 19:15:09 -06:00
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
})
|
2023-08-16 03:51:28 -05:00
|
|
|
public proxyAccountId: MiUser['id'] | null;
|
2020-02-04 19:15:09 -06:00
|
|
|
|
2023-08-16 03:51:28 -05:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 08:58:30 -06:00
|
|
|
onDelete: 'SET NULL',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
2020-02-04 19:15:09 -06:00
|
|
|
@JoinColumn()
|
2023-08-16 03:51:28 -05:00
|
|
|
public proxyAccount: MiUser | null;
|
2019-04-07 07:50:36 -05:00
|
|
|
|
2021-10-07 23:37:02 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public emailRequiredForSignup: boolean;
|
|
|
|
|
2020-04-28 00:29:33 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableHcaptcha: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2020-04-28 00:29:33 -05:00
|
|
|
})
|
|
|
|
public hcaptchaSiteKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2020-04-28 00:29:33 -05:00
|
|
|
})
|
|
|
|
public hcaptchaSecretKey: string | null;
|
|
|
|
|
2024-01-06 05:14:33 -06:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableMcaptcha: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public mcaptchaSitekey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public mcaptchaSecretKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public mcaptchaInstanceUrl: string | null;
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableRecaptcha: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public recaptchaSiteKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public recaptchaSecretKey: string | null;
|
|
|
|
|
2022-10-12 19:19:57 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableTurnstile: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2022-10-12 19:19:57 -05:00
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public turnstileSiteKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2022-10-12 19:19:57 -05:00
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public turnstileSecretKey: string | null;
|
|
|
|
|
2022-07-07 07:06:37 -05:00
|
|
|
@Column('enum', {
|
|
|
|
enum: ['none', 'all', 'local', 'remote'],
|
|
|
|
default: 'none',
|
|
|
|
})
|
|
|
|
public sensitiveMediaDetection: 'none' | 'all' | 'local' | 'remote';
|
|
|
|
|
|
|
|
@Column('enum', {
|
|
|
|
enum: ['medium', 'low', 'high', 'veryLow', 'veryHigh'],
|
|
|
|
default: 'medium',
|
|
|
|
})
|
|
|
|
public sensitiveMediaDetectionSensitivity: 'medium' | 'low' | 'high' | 'veryLow' | 'veryHigh';
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public setSensitiveFlagAutomatically: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableSensitiveMediaDetectionForVideos: boolean;
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public summalyProxy: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableEmail: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public email: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public smtpSecure: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public smtpHost: string | null;
|
|
|
|
|
|
|
|
@Column('integer', {
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public smtpPort: number | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public smtpUser: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public smtpPass: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableServiceWorker: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public swPublicKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public swPrivateKey: string | null;
|
|
|
|
|
2021-08-15 06:26:44 -05:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2021-08-15 06:26:44 -05:00
|
|
|
})
|
|
|
|
public deeplAuthKey: string | null;
|
|
|
|
|
2021-08-23 23:19:21 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public deeplIsPro: boolean;
|
|
|
|
|
2019-05-13 12:57:04 -05:00
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-13 12:57:04 -05:00
|
|
|
})
|
2023-03-09 23:53:56 -06:00
|
|
|
public termsOfServiceUrl: string | null;
|
2019-05-13 12:57:04 -05:00
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-03-23 22:23:05 -05:00
|
|
|
default: 'https://github.com/misskey-dev/misskey',
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: false,
|
2019-05-13 12:57:04 -05:00
|
|
|
})
|
|
|
|
public repositoryUrl: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-03-23 22:23:05 -05:00
|
|
|
default: 'https://github.com/misskey-dev/misskey/issues/new',
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-13 12:57:04 -05:00
|
|
|
})
|
|
|
|
public feedbackUrl: string | null;
|
2019-05-15 11:07:32 -05:00
|
|
|
|
2023-10-06 23:13:13 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public impressumUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public privacyPolicyUrl: string | null;
|
|
|
|
|
2022-03-01 08:58:01 -06:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 8192,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public defaultLightTheme: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 8192,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public defaultDarkTheme: string | null;
|
|
|
|
|
2019-05-15 11:07:32 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public useObjectStorage: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageBucket: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStoragePrefix: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageBaseUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageEndpoint: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageRegion: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageAccessKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2023-03-09 23:53:56 -06:00
|
|
|
length: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageSecretKey: string | null;
|
|
|
|
|
|
|
|
@Column('integer', {
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStoragePort: number | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public objectStorageUseSSL: boolean;
|
2020-04-12 06:32:34 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public objectStorageUseProxy: boolean;
|
2020-08-13 06:05:01 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public objectStorageSetPublicRead: boolean;
|
2021-02-05 20:48:57 -06:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public objectStorageS3ForcePathStyle: boolean;
|
2022-07-02 01:12:11 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableIpLogging: boolean;
|
2022-07-09 01:05:55 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public enableActiveEmailValidation: boolean;
|
2023-01-12 06:02:26 -06:00
|
|
|
|
2023-11-18 05:39:48 -06:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableVerifymailApi: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public verifymailAuthKey: string | null;
|
|
|
|
|
2023-12-29 03:23:29 -06:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableTruemailApi: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public truemailInstance: string | null;
|
2024-01-06 05:14:33 -06:00
|
|
|
|
2023-12-29 03:23:29 -06:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public truemailAuthKey: string | null;
|
|
|
|
|
2023-03-24 01:43:36 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public enableChartsForRemoteUser: boolean;
|
|
|
|
|
2023-03-24 05:08:08 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public enableChartsForFederatedInstances: boolean;
|
|
|
|
|
2023-07-02 02:02:32 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableServerMachineStats: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public enableIdenticonGeneration: boolean;
|
|
|
|
|
2023-01-12 06:02:26 -06:00
|
|
|
@Column('jsonb', {
|
|
|
|
default: { },
|
|
|
|
})
|
2023-01-15 05:52:53 -06:00
|
|
|
public policies: Record<string, any>;
|
2023-04-19 07:24:31 -05:00
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 280,
|
|
|
|
array: true,
|
|
|
|
default: '{}',
|
|
|
|
})
|
|
|
|
public serverRules: string[];
|
2023-04-29 03:03:14 -05:00
|
|
|
|
2023-09-16 03:05:17 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 8192,
|
|
|
|
default: '{}',
|
|
|
|
})
|
|
|
|
public manifestJsonOverride: string;
|
|
|
|
|
2023-12-22 21:06:22 -06:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
|
|
|
array: true,
|
|
|
|
default: '{}',
|
|
|
|
})
|
|
|
|
public bannedEmailDomains: string[];
|
|
|
|
|
2023-04-29 03:03:14 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024, array: true, default: '{ "admin", "administrator", "root", "system", "maintainer", "host", "mod", "moderator", "owner", "superuser", "staff", "auth", "i", "me", "everyone", "all", "mention", "mentions", "example", "user", "users", "account", "accounts", "official", "help", "helps", "support", "supports", "info", "information", "informations", "announce", "announces", "announcement", "announcements", "notice", "notification", "notifications", "dev", "developer", "developers", "tech", "misskey" }',
|
|
|
|
})
|
|
|
|
public preservedUsernames: string[];
|
2023-10-03 18:46:27 -05:00
|
|
|
|
2023-10-23 01:17:25 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public enableFanoutTimeline: boolean;
|
|
|
|
|
2023-11-15 19:20:57 -06:00
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public enableFanoutTimelineDbFallback: boolean;
|
|
|
|
|
2023-10-03 18:46:27 -05:00
|
|
|
@Column('integer', {
|
|
|
|
default: 300,
|
|
|
|
})
|
|
|
|
public perLocalUserUserTimelineCacheMax: number;
|
|
|
|
|
|
|
|
@Column('integer', {
|
|
|
|
default: 100,
|
|
|
|
})
|
|
|
|
public perRemoteUserUserTimelineCacheMax: number;
|
|
|
|
|
|
|
|
@Column('integer', {
|
|
|
|
default: 300,
|
|
|
|
})
|
|
|
|
public perUserHomeTimelineCacheMax: number;
|
|
|
|
|
|
|
|
@Column('integer', {
|
|
|
|
default: 300,
|
|
|
|
})
|
|
|
|
public perUserListTimelineCacheMax: number;
|
2023-10-08 03:56:44 -05:00
|
|
|
|
|
|
|
@Column('integer', {
|
|
|
|
default: 0,
|
|
|
|
})
|
|
|
|
public notesPerOneAd: number;
|
2019-04-07 07:50:36 -05:00
|
|
|
}
|