diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2019-05-14 02:57:04 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-05-14 02:57:04 +0900 |
| commit | 7c03d37caa3107c4e21f60563a6f19979d0a509b (patch) | |
| tree | e3861d7d057c5458091df9739fb1e5d11b6d1e16 /src/models | |
| parent | Fix: user menu (#4845) (#4920) (diff) | |
| download | sharkey-7c03d37caa3107c4e21f60563a6f19979d0a509b.tar.gz sharkey-7c03d37caa3107c4e21f60563a6f19979d0a509b.tar.bz2 sharkey-7c03d37caa3107c4e21f60563a6f19979d0a509b.zip | |
Add ToSUrl, repositoryUrl, feedbackUrl (#4921)
* Add ToSUrl, repositoryUrl, feedbackUrl
* modify nodeinfo
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/entities/meta.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/models/entities/meta.ts b/src/models/entities/meta.ts index 2c36b8333f..c3797a9ed6 100644 --- a/src/models/entities/meta.ts +++ b/src/models/entities/meta.ts @@ -268,4 +268,24 @@ export class Meta { nullable: true }) public discordClientSecret: string | null; + + @Column('varchar', { + length: 512, + nullable: true + }) + public ToSUrl: string | null; + + @Column('varchar', { + length: 512, + default: 'https://github.com/syuilo/misskey', + nullable: false + }) + public repositoryUrl: string; + + @Column('varchar', { + length: 512, + default: 'https://github.com/syuilo/misskey/issues/new', + nullable: true + }) + public feedbackUrl: string | null; } |