URLプレビューのサムネイルを隠す機能を追加 (MisskeyIO#214)
This commit is contained in:
parent
f229e26312
commit
ec5e1df9f5
11 changed files with 76 additions and 1 deletions
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class UrlPreviewDenyList1699284486293 {
|
||||
name = 'UrlPreviewDenyList1699284486293'
|
||||
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "urlPreviewDenyList" character varying(3072) array NOT NULL DEFAULT '{}'`);
|
||||
}
|
||||
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "urlPreviewDenyList"`);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue