1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/pipes/StringifyRolePipe.ts

12 lines
269 B
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import {Pipe, PipeTransform} from '@angular/core';
import {UserRoles} from '../../../common/entities/UserDTO';
@Pipe({name: 'stringifyRole'})
export class StringifyRole implements PipeTransform {
2018-11-29 06:49:33 +08:00
transform(role: number): string {
return UserRoles[role];
}
}