diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-01 18:15:35 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-01 18:15:35 +0900 |
| commit | 5323ab8e8e0959906e023b9154b273486ac7972a (patch) | |
| tree | e1fb24d67bfa28f6dd49cf4fe6b75de3ff76c37b /src/models | |
| parent | Add missing property (diff) | |
| parent | Implement post Activity Streams (diff) | |
| download | misskey-5323ab8e8e0959906e023b9154b273486ac7972a.tar.gz misskey-5323ab8e8e0959906e023b9154b273486ac7972a.tar.bz2 misskey-5323ab8e8e0959906e023b9154b273486ac7972a.zip | |
Merge pull request #1351 from akihikodaki/webfinger
Implement post Activity Streams
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/post.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/models/post.ts b/src/models/post.ts index 4daad306d6..e7b54180ff 100644 --- a/src/models/post.ts +++ b/src/models/post.ts @@ -48,6 +48,7 @@ export type IPost = { heading: number; speed: number; }; + tags: string[]; }; /** |