mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-27 16:23:08 +02: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