diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2019-02-08 04:26:43 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-08 04:26:43 +0900 |
| commit | e6612f610c4b8a04663e95bc23e4b5e7ae255831 (patch) | |
| tree | 364d1f52b2db506a2315eb65c4276cc8fed3fad4 /src/models/instance.ts | |
| parent | Update CONTRIBUTING.md (diff) | |
| download | sharkey-e6612f610c4b8a04663e95bc23e4b5e7ae255831.tar.gz sharkey-e6612f610c4b8a04663e95bc23e4b5e7ae255831.tar.bz2 sharkey-e6612f610c4b8a04663e95bc23e4b5e7ae255831.zip | |
Implement instance blocking (#4182)
* Implement instance blocking
* Add missing text
* Delete unnecessary file
* Covert Punycode to Unicode
Diffstat (limited to 'src/models/instance.ts')
| -rw-r--r-- | src/models/instance.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/models/instance.ts b/src/models/instance.ts index 904ed95dc0..242e80f300 100644 --- a/src/models/instance.ts +++ b/src/models/instance.ts @@ -57,4 +57,9 @@ export interface IInstance { * 直近のリクエスト受信日時 */ latestRequestReceivedAt?: Date; + + /** + * このインスタンスをブロックしているか + */ + isBlocked: boolean; } |