feat: URLプレビューのリダイレクトを受け入れるかどうかを設定できるようにする (#16112)

* feat: URLプレビューのリダイレクトを受け入れるかどうかを設定できるようにする

* fix CHANGELOG.md

* fix lang
This commit is contained in:
おさむのひと
2025-05-27 20:46:22 +09:00
committed by GitHub
parent 97e916c912
commit 9bbc2028ad
10 changed files with 54 additions and 3 deletions

View File

@@ -619,6 +619,11 @@ export class MiMeta {
})
public urlPreviewEnabled: boolean;
@Column('boolean', {
default: true,
})
public urlPreviewAllowRedirect: boolean;
@Column('integer', {
default: 10000,
})