2022-02-27 02:07:39 +00:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { Meta } from '@/models/entities/meta.js';
|
|
|
|
import { insertModerationLog } from '@/services/insert-moderation-log.js';
|
|
|
|
import { DB_MAX_NOTE_TEXT_LENGTH } from '@/misc/hard-limits.js';
|
2022-03-26 06:34:00 +00:00
|
|
|
import { db } from '@/db/postgre.js';
|
2018-08-22 18:19:57 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2020-01-29 19:37:25 +00:00
|
|
|
requireAdmin: true,
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2018-08-22 18:19:57 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
disableRegistration: { type: 'boolean', nullable: true },
|
|
|
|
disableLocalTimeline: { type: 'boolean', nullable: true },
|
|
|
|
disableGlobalTimeline: { type: 'boolean', nullable: true },
|
|
|
|
useStarForReactionFallback: { type: 'boolean', nullable: true },
|
|
|
|
pinnedUsers: { type: 'array', nullable: true, items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
hiddenTags: { type: 'array', nullable: true, items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
blockedHosts: { type: 'array', nullable: true, items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
2022-05-19 07:54:45 +00:00
|
|
|
themeColor: { type: 'string', nullable: true, pattern: '^#[0-9a-fA-F]{6}$' },
|
2022-02-19 05:05:32 +00:00
|
|
|
mascotImageUrl: { type: 'string', nullable: true },
|
|
|
|
bannerUrl: { type: 'string', nullable: true },
|
|
|
|
errorImageUrl: { type: 'string', nullable: true },
|
|
|
|
iconUrl: { type: 'string', nullable: true },
|
|
|
|
backgroundImageUrl: { type: 'string', nullable: true },
|
|
|
|
logoImageUrl: { type: 'string', nullable: true },
|
|
|
|
name: { type: 'string', nullable: true },
|
|
|
|
description: { type: 'string', nullable: true },
|
2022-03-01 14:58:01 +00:00
|
|
|
defaultLightTheme: { type: 'string', nullable: true },
|
|
|
|
defaultDarkTheme: { type: 'string', nullable: true },
|
2022-02-19 05:05:32 +00:00
|
|
|
localDriveCapacityMb: { type: 'integer' },
|
|
|
|
remoteDriveCapacityMb: { type: 'integer' },
|
|
|
|
cacheRemoteFiles: { type: 'boolean' },
|
|
|
|
emailRequiredForSignup: { type: 'boolean' },
|
|
|
|
enableHcaptcha: { type: 'boolean' },
|
|
|
|
hcaptchaSiteKey: { type: 'string', nullable: true },
|
|
|
|
hcaptchaSecretKey: { type: 'string', nullable: true },
|
|
|
|
enableRecaptcha: { type: 'boolean' },
|
|
|
|
recaptchaSiteKey: { type: 'string', nullable: true },
|
|
|
|
recaptchaSecretKey: { type: 'string', nullable: true },
|
|
|
|
proxyAccountId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
maintainerName: { type: 'string', nullable: true },
|
|
|
|
maintainerEmail: { type: 'string', nullable: true },
|
|
|
|
pinnedPages: { type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
pinnedClipId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
langs: { type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
summalyProxy: { type: 'string', nullable: true },
|
|
|
|
deeplAuthKey: { type: 'string', nullable: true },
|
|
|
|
deeplIsPro: { type: 'boolean' },
|
|
|
|
enableTwitterIntegration: { type: 'boolean' },
|
|
|
|
twitterConsumerKey: { type: 'string', nullable: true },
|
|
|
|
twitterConsumerSecret: { type: 'string', nullable: true },
|
|
|
|
enableGithubIntegration: { type: 'boolean' },
|
|
|
|
githubClientId: { type: 'string', nullable: true },
|
|
|
|
githubClientSecret: { type: 'string', nullable: true },
|
|
|
|
enableDiscordIntegration: { type: 'boolean' },
|
|
|
|
discordClientId: { type: 'string', nullable: true },
|
|
|
|
discordClientSecret: { type: 'string', nullable: true },
|
|
|
|
enableEmail: { type: 'boolean' },
|
|
|
|
email: { type: 'string', nullable: true },
|
|
|
|
smtpSecure: { type: 'boolean' },
|
|
|
|
smtpHost: { type: 'string', nullable: true },
|
|
|
|
smtpPort: { type: 'integer', nullable: true },
|
|
|
|
smtpUser: { type: 'string', nullable: true },
|
|
|
|
smtpPass: { type: 'string', nullable: true },
|
|
|
|
enableServiceWorker: { type: 'boolean' },
|
|
|
|
swPublicKey: { type: 'string', nullable: true },
|
|
|
|
swPrivateKey: { type: 'string', nullable: true },
|
|
|
|
tosUrl: { type: 'string', nullable: true },
|
|
|
|
repositoryUrl: { type: 'string' },
|
|
|
|
feedbackUrl: { type: 'string' },
|
|
|
|
useObjectStorage: { type: 'boolean' },
|
|
|
|
objectStorageBaseUrl: { type: 'string', nullable: true },
|
|
|
|
objectStorageBucket: { type: 'string', nullable: true },
|
|
|
|
objectStoragePrefix: { type: 'string', nullable: true },
|
|
|
|
objectStorageEndpoint: { type: 'string', nullable: true },
|
|
|
|
objectStorageRegion: { type: 'string', nullable: true },
|
|
|
|
objectStoragePort: { type: 'integer', nullable: true },
|
|
|
|
objectStorageAccessKey: { type: 'string', nullable: true },
|
|
|
|
objectStorageSecretKey: { type: 'string', nullable: true },
|
|
|
|
objectStorageUseSSL: { type: 'boolean' },
|
|
|
|
objectStorageUseProxy: { type: 'boolean' },
|
|
|
|
objectStorageSetPublicRead: { type: 'boolean' },
|
|
|
|
objectStorageS3ForcePathStyle: { type: 'boolean' },
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: [],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-08-22 18:19:57 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2019-04-07 12:50:36 +00:00
|
|
|
const set = {} as Partial<Meta>;
|
2018-08-22 18:19:57 +00:00
|
|
|
|
2018-09-01 14:29:22 +00:00
|
|
|
if (typeof ps.disableRegistration === 'boolean') {
|
2018-08-22 18:19:57 +00:00
|
|
|
set.disableRegistration = ps.disableRegistration;
|
|
|
|
}
|
|
|
|
|
2018-09-11 17:48:19 +00:00
|
|
|
if (typeof ps.disableLocalTimeline === 'boolean') {
|
|
|
|
set.disableLocalTimeline = ps.disableLocalTimeline;
|
|
|
|
}
|
|
|
|
|
2019-01-16 05:54:14 +00:00
|
|
|
if (typeof ps.disableGlobalTimeline === 'boolean') {
|
|
|
|
set.disableGlobalTimeline = ps.disableGlobalTimeline;
|
|
|
|
}
|
|
|
|
|
2019-03-17 16:03:35 +00:00
|
|
|
if (typeof ps.useStarForReactionFallback === 'boolean') {
|
|
|
|
set.useStarForReactionFallback = ps.useStarForReactionFallback;
|
|
|
|
}
|
|
|
|
|
2019-05-10 08:30:28 +00:00
|
|
|
if (Array.isArray(ps.pinnedUsers)) {
|
2019-09-12 12:27:44 +00:00
|
|
|
set.pinnedUsers = ps.pinnedUsers.filter(Boolean);
|
2019-05-10 08:30:28 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (Array.isArray(ps.hiddenTags)) {
|
2019-09-12 12:27:44 +00:00
|
|
|
set.hiddenTags = ps.hiddenTags.filter(Boolean);
|
2018-09-07 10:20:50 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 11:49:09 +00:00
|
|
|
if (Array.isArray(ps.blockedHosts)) {
|
2019-09-12 12:27:44 +00:00
|
|
|
set.blockedHosts = ps.blockedHosts.filter(Boolean);
|
2019-05-14 11:49:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 12:25:48 +00:00
|
|
|
if (ps.themeColor !== undefined) {
|
|
|
|
set.themeColor = ps.themeColor;
|
|
|
|
}
|
|
|
|
|
2019-01-03 18:52:50 +00:00
|
|
|
if (ps.mascotImageUrl !== undefined) {
|
|
|
|
set.mascotImageUrl = ps.mascotImageUrl;
|
2019-01-03 18:02:40 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 08:21:16 +00:00
|
|
|
if (ps.bannerUrl !== undefined) {
|
|
|
|
set.bannerUrl = ps.bannerUrl;
|
|
|
|
}
|
|
|
|
|
2019-03-14 07:30:51 +00:00
|
|
|
if (ps.iconUrl !== undefined) {
|
|
|
|
set.iconUrl = ps.iconUrl;
|
|
|
|
}
|
|
|
|
|
2020-11-25 12:31:34 +00:00
|
|
|
if (ps.backgroundImageUrl !== undefined) {
|
|
|
|
set.backgroundImageUrl = ps.backgroundImageUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.logoImageUrl !== undefined) {
|
|
|
|
set.logoImageUrl = ps.logoImageUrl;
|
|
|
|
}
|
|
|
|
|
2018-11-04 14:00:43 +00:00
|
|
|
if (ps.name !== undefined) {
|
|
|
|
set.name = ps.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.description !== undefined) {
|
|
|
|
set.description = ps.description;
|
|
|
|
}
|
|
|
|
|
2022-03-01 14:58:01 +00:00
|
|
|
if (ps.defaultLightTheme !== undefined) {
|
|
|
|
set.defaultLightTheme = ps.defaultLightTheme;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.defaultDarkTheme !== undefined) {
|
|
|
|
set.defaultDarkTheme = ps.defaultDarkTheme;
|
|
|
|
}
|
|
|
|
|
2018-11-05 22:14:43 +00:00
|
|
|
if (ps.localDriveCapacityMb !== undefined) {
|
|
|
|
set.localDriveCapacityMb = ps.localDriveCapacityMb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.remoteDriveCapacityMb !== undefined) {
|
|
|
|
set.remoteDriveCapacityMb = ps.remoteDriveCapacityMb;
|
|
|
|
}
|
|
|
|
|
2018-11-05 22:52:13 +00:00
|
|
|
if (ps.cacheRemoteFiles !== undefined) {
|
|
|
|
set.cacheRemoteFiles = ps.cacheRemoteFiles;
|
|
|
|
}
|
|
|
|
|
2021-10-08 04:37:02 +00:00
|
|
|
if (ps.emailRequiredForSignup !== undefined) {
|
|
|
|
set.emailRequiredForSignup = ps.emailRequiredForSignup;
|
|
|
|
}
|
|
|
|
|
2020-04-28 05:29:33 +00:00
|
|
|
if (ps.enableHcaptcha !== undefined) {
|
|
|
|
set.enableHcaptcha = ps.enableHcaptcha;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.hcaptchaSiteKey !== undefined) {
|
|
|
|
set.hcaptchaSiteKey = ps.hcaptchaSiteKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.hcaptchaSecretKey !== undefined) {
|
|
|
|
set.hcaptchaSecretKey = ps.hcaptchaSecretKey;
|
|
|
|
}
|
|
|
|
|
2018-11-06 15:08:21 +00:00
|
|
|
if (ps.enableRecaptcha !== undefined) {
|
|
|
|
set.enableRecaptcha = ps.enableRecaptcha;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.recaptchaSiteKey !== undefined) {
|
|
|
|
set.recaptchaSiteKey = ps.recaptchaSiteKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.recaptchaSecretKey !== undefined) {
|
|
|
|
set.recaptchaSecretKey = ps.recaptchaSecretKey;
|
|
|
|
}
|
|
|
|
|
2020-02-05 01:15:09 +00:00
|
|
|
if (ps.proxyAccountId !== undefined) {
|
|
|
|
set.proxyAccountId = ps.proxyAccountId;
|
2018-11-06 15:44:56 +00:00
|
|
|
}
|
|
|
|
|
2018-11-06 16:12:26 +00:00
|
|
|
if (ps.maintainerName !== undefined) {
|
2019-04-07 12:50:36 +00:00
|
|
|
set.maintainerName = ps.maintainerName;
|
2018-11-06 16:12:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.maintainerEmail !== undefined) {
|
2019-04-07 12:50:36 +00:00
|
|
|
set.maintainerEmail = ps.maintainerEmail;
|
2018-11-06 16:12:26 +00:00
|
|
|
}
|
|
|
|
|
2019-09-12 12:27:44 +00:00
|
|
|
if (Array.isArray(ps.langs)) {
|
|
|
|
set.langs = ps.langs.filter(Boolean);
|
2018-11-07 03:28:53 +00:00
|
|
|
}
|
|
|
|
|
2020-11-17 05:59:15 +00:00
|
|
|
if (Array.isArray(ps.pinnedPages)) {
|
|
|
|
set.pinnedPages = ps.pinnedPages.filter(Boolean);
|
|
|
|
}
|
|
|
|
|
2020-12-05 07:05:40 +00:00
|
|
|
if (ps.pinnedClipId !== undefined) {
|
|
|
|
set.pinnedClipId = ps.pinnedClipId;
|
|
|
|
}
|
|
|
|
|
2018-11-22 23:13:17 +00:00
|
|
|
if (ps.summalyProxy !== undefined) {
|
|
|
|
set.summalyProxy = ps.summalyProxy;
|
|
|
|
}
|
|
|
|
|
2018-11-07 04:14:52 +00:00
|
|
|
if (ps.enableTwitterIntegration !== undefined) {
|
|
|
|
set.enableTwitterIntegration = ps.enableTwitterIntegration;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.twitterConsumerKey !== undefined) {
|
|
|
|
set.twitterConsumerKey = ps.twitterConsumerKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.twitterConsumerSecret !== undefined) {
|
|
|
|
set.twitterConsumerSecret = ps.twitterConsumerSecret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.enableGithubIntegration !== undefined) {
|
|
|
|
set.enableGithubIntegration = ps.enableGithubIntegration;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.githubClientId !== undefined) {
|
|
|
|
set.githubClientId = ps.githubClientId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.githubClientSecret !== undefined) {
|
|
|
|
set.githubClientSecret = ps.githubClientSecret;
|
|
|
|
}
|
|
|
|
|
2018-11-15 10:15:04 +00:00
|
|
|
if (ps.enableDiscordIntegration !== undefined) {
|
|
|
|
set.enableDiscordIntegration = ps.enableDiscordIntegration;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.discordClientId !== undefined) {
|
|
|
|
set.discordClientId = ps.discordClientId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.discordClientSecret !== undefined) {
|
|
|
|
set.discordClientSecret = ps.discordClientSecret;
|
|
|
|
}
|
|
|
|
|
2018-11-29 07:23:45 +00:00
|
|
|
if (ps.enableEmail !== undefined) {
|
|
|
|
set.enableEmail = ps.enableEmail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.email !== undefined) {
|
|
|
|
set.email = ps.email;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpSecure !== undefined) {
|
|
|
|
set.smtpSecure = ps.smtpSecure;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpHost !== undefined) {
|
|
|
|
set.smtpHost = ps.smtpHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpPort !== undefined) {
|
|
|
|
set.smtpPort = ps.smtpPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpUser !== undefined) {
|
|
|
|
set.smtpUser = ps.smtpUser;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpPass !== undefined) {
|
|
|
|
set.smtpPass = ps.smtpPass;
|
|
|
|
}
|
|
|
|
|
2018-12-11 12:17:57 +00:00
|
|
|
if (ps.errorImageUrl !== undefined) {
|
|
|
|
set.errorImageUrl = ps.errorImageUrl;
|
|
|
|
}
|
|
|
|
|
2018-12-19 19:08:13 +00:00
|
|
|
if (ps.enableServiceWorker !== undefined) {
|
|
|
|
set.enableServiceWorker = ps.enableServiceWorker;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.swPublicKey !== undefined) {
|
|
|
|
set.swPublicKey = ps.swPublicKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.swPrivateKey !== undefined) {
|
|
|
|
set.swPrivateKey = ps.swPrivateKey;
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
if (ps.tosUrl !== undefined) {
|
|
|
|
set.ToSUrl = ps.tosUrl;
|
2019-05-13 17:57:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.repositoryUrl !== undefined) {
|
|
|
|
set.repositoryUrl = ps.repositoryUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.feedbackUrl !== undefined) {
|
|
|
|
set.feedbackUrl = ps.feedbackUrl;
|
|
|
|
}
|
|
|
|
|
2019-05-15 16:07:32 +00:00
|
|
|
if (ps.useObjectStorage !== undefined) {
|
|
|
|
set.useObjectStorage = ps.useObjectStorage;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageBaseUrl !== undefined) {
|
|
|
|
set.objectStorageBaseUrl = ps.objectStorageBaseUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageBucket !== undefined) {
|
|
|
|
set.objectStorageBucket = ps.objectStorageBucket;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStoragePrefix !== undefined) {
|
|
|
|
set.objectStoragePrefix = ps.objectStoragePrefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageEndpoint !== undefined) {
|
|
|
|
set.objectStorageEndpoint = ps.objectStorageEndpoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageRegion !== undefined) {
|
|
|
|
set.objectStorageRegion = ps.objectStorageRegion;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStoragePort !== undefined) {
|
|
|
|
set.objectStoragePort = ps.objectStoragePort;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageAccessKey !== undefined) {
|
|
|
|
set.objectStorageAccessKey = ps.objectStorageAccessKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageSecretKey !== undefined) {
|
|
|
|
set.objectStorageSecretKey = ps.objectStorageSecretKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageUseSSL !== undefined) {
|
|
|
|
set.objectStorageUseSSL = ps.objectStorageUseSSL;
|
|
|
|
}
|
|
|
|
|
2020-04-12 11:32:34 +00:00
|
|
|
if (ps.objectStorageUseProxy !== undefined) {
|
|
|
|
set.objectStorageUseProxy = ps.objectStorageUseProxy;
|
|
|
|
}
|
|
|
|
|
2020-08-13 11:05:01 +00:00
|
|
|
if (ps.objectStorageSetPublicRead !== undefined) {
|
|
|
|
set.objectStorageSetPublicRead = ps.objectStorageSetPublicRead;
|
|
|
|
}
|
|
|
|
|
2021-02-06 02:48:57 +00:00
|
|
|
if (ps.objectStorageS3ForcePathStyle !== undefined) {
|
|
|
|
set.objectStorageS3ForcePathStyle = ps.objectStorageS3ForcePathStyle;
|
|
|
|
}
|
|
|
|
|
2021-08-15 11:26:44 +00:00
|
|
|
if (ps.deeplAuthKey !== undefined) {
|
|
|
|
if (ps.deeplAuthKey === '') {
|
|
|
|
set.deeplAuthKey = null;
|
|
|
|
} else {
|
|
|
|
set.deeplAuthKey = ps.deeplAuthKey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-24 04:19:21 +00:00
|
|
|
if (ps.deeplIsPro !== undefined) {
|
|
|
|
set.deeplIsPro = ps.deeplIsPro;
|
|
|
|
}
|
|
|
|
|
2022-03-26 06:34:00 +00:00
|
|
|
await db.transaction(async transactionalEntityManager => {
|
2022-04-03 04:54:22 +00:00
|
|
|
const metas = await transactionalEntityManager.find(Meta, {
|
2019-04-16 15:45:33 +00:00
|
|
|
order: {
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'DESC',
|
|
|
|
},
|
2019-04-16 15:45:33 +00:00
|
|
|
});
|
2018-08-22 18:19:57 +00:00
|
|
|
|
2022-04-03 04:54:22 +00:00
|
|
|
const meta = metas[0];
|
|
|
|
|
2019-04-16 15:45:33 +00:00
|
|
|
if (meta) {
|
|
|
|
await transactionalEntityManager.update(Meta, meta.id, set);
|
|
|
|
} else {
|
|
|
|
await transactionalEntityManager.save(Meta, set);
|
|
|
|
}
|
|
|
|
});
|
2019-07-13 18:18:45 +00:00
|
|
|
|
|
|
|
insertModerationLog(me, 'updateMeta');
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|