diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-07-18 00:11:39 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-07-18 00:11:39 +0900 |
| commit | ef44eda69eefbdeeb1efee1c8351be081938cae5 (patch) | |
| tree | 7a83740fbbc3ffec0fe3c661db1f939399e91220 /src/models | |
| parent | Resolve #5117 (#5171) (diff) | |
| download | sharkey-ef44eda69eefbdeeb1efee1c8351be081938cae5.tar.gz sharkey-ef44eda69eefbdeeb1efee1c8351be081938cae5.tar.bz2 sharkey-ef44eda69eefbdeeb1efee1c8351be081938cae5.zip | |
Mastodonのリンクの所有者認証に対応 (#5161)
* Profile metadata を設定できるように
* API desc
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/repositories/user.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/models/repositories/user.ts b/src/models/repositories/user.ts index 4e85fd7b93..a04b87f77c 100644 --- a/src/models/repositories/user.ts +++ b/src/models/repositories/user.ts @@ -148,6 +148,7 @@ export class UserRepository extends Repository<User> { description: profile!.description, location: profile!.location, birthday: profile!.birthday, + fields: profile!.fields, followersCount: user.followersCount, followingCount: user.followingCount, notesCount: user.notesCount, |