mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 09:36:44 -06:00
Add missing src/renderers/get-user-name.ts
This commit is contained in:
parent
d99d628f50
commit
39b896a900
1 changed files with 5 additions and 0 deletions
5
src/renderers/get-user-name.ts
Normal file
5
src/renderers/get-user-name.ts
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import { IUser } from '../models/user';
|
||||||
|
|
||||||
|
export default function(user: IUser): string {
|
||||||
|
return user.name || '名無し';
|
||||||
|
}
|
Loading…
Reference in a new issue