From 900a9cb34f286b0993dfea7b3278ee8cf6918cba Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 21 Jul 2018 19:33:56 +0900 Subject: sharedInbox対応 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/models/follow-request.ts | 2 ++ src/models/following.ts | 2 ++ 2 files changed, 4 insertions(+) (limited to 'src/models') diff --git a/src/models/follow-request.ts b/src/models/follow-request.ts index fdb20011f4..8ed131c80e 100644 --- a/src/models/follow-request.ts +++ b/src/models/follow-request.ts @@ -17,10 +17,12 @@ export type IFollowRequest = { _followee: { host: string; inbox?: string; + sharedInbox?: string; }, _follower: { host: string; inbox?: string; + sharedInbox?: string; } }; diff --git a/src/models/following.ts b/src/models/following.ts index 4712379a70..8aa588f557 100644 --- a/src/models/following.ts +++ b/src/models/following.ts @@ -16,10 +16,12 @@ export type IFollowing = { _followee: { host: string; inbox?: string; + sharedInbox?: string; }, _follower: { host: string; inbox?: string; + sharedInbox?: string; } }; -- cgit v1.2.3-freya