diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-01 23:32:46 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-01 23:32:46 +0900 |
| commit | 13c2de67a4e5aedc9e70726752c15ff232b7c9fd (patch) | |
| tree | 3da38725843c01e0dddf9a044e8017018b735325 /src/models | |
| parent | Add missing semicolon (diff) | |
| parent | Implement remote follow (diff) | |
| download | misskey-13c2de67a4e5aedc9e70726752c15ff232b7c9fd.tar.gz misskey-13c2de67a4e5aedc9e70726752c15ff232b7c9fd.tar.bz2 misskey-13c2de67a4e5aedc9e70726752c15ff232b7c9fd.zip | |
Merge pull request #1356 from akihikodaki/publickey
Implement remote follow
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/user.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/models/user.ts b/src/models/user.ts index 9588c45153..d9ac72b88f 100644 --- a/src/models/user.ts +++ b/src/models/user.ts @@ -70,6 +70,7 @@ export type ILocalAccount = { }; export type IRemoteAccount = { + inbox: string; uri: string; publicKey: { id: string; |