summaryrefslogtreecommitdiff
path: root/src/models
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-07-21 19:33:56 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-07-21 19:33:56 +0900
commit900a9cb34f286b0993dfea7b3278ee8cf6918cba (patch)
treef3ac40545266578a649a961b2f31c5c9571ee4bf /src/models
parent#1947 (diff)
downloadsharkey-900a9cb34f286b0993dfea7b3278ee8cf6918cba.tar.gz
sharkey-900a9cb34f286b0993dfea7b3278ee8cf6918cba.tar.bz2
sharkey-900a9cb34f286b0993dfea7b3278ee8cf6918cba.zip
sharedInbox対応
Diffstat (limited to 'src/models')
-rw-r--r--src/models/follow-request.ts2
-rw-r--r--src/models/following.ts2
2 files changed, 4 insertions, 0 deletions
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;
}
};