mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 17:03:49 +01:00
Delete get-user-summary.ts
This commit is contained in:
parent
6ccd8002c2
commit
be1cbfd8ef
@ -1,19 +0,0 @@
|
|||||||
import getAcct from './acct/render';
|
|
||||||
import getUserName from './get-user-name';
|
|
||||||
import { User } from '../models/entities/user';
|
|
||||||
import { Users } from '../models';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* ユーザーを表す文字列を取得します。
|
|
||||||
* @param user ユーザー
|
|
||||||
*/
|
|
||||||
export default function(user: User): string {
|
|
||||||
let string = `${getUserName(user)} (@${getAcct(user)})\n` +
|
|
||||||
`${user.notesCount}投稿、${user.followingCount}フォロー、${user.followersCount}フォロワー\n`;
|
|
||||||
|
|
||||||
if (Users.isLocalUser(user)) {
|
|
||||||
string += `場所: ${user.location}、誕生日: ${user.birthday}\n`;
|
|
||||||
}
|
|
||||||
|
|
||||||
return string + `「${user.description}」`;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user