feat: list and remove umpires from tab 2

This commit is contained in:
2026-05-24 17:47:42 +02:00
parent 0f46cb3c93
commit 56b9a186d4
5 changed files with 242 additions and 12 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Pipe, PipeTransform } from '@angular/core';
import { Umpire } from 'db';
@Pipe({
name: 'fullname',
standalone: true
})
export class FullnamePipe implements PipeTransform {
transform(value: Umpire, ...args: unknown[]): string {
// TODO: in case of multilang, change here
return value.lastName + ' ' + value.firstName;
}
}