Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type Team } from '@amalia/core/models';
import { users } from './users';
export const teams = {
teamAE: {
id: '72d62fe8-459c-429a-bda0-e46d0a468afb',
name: 'team ae',
user: users.admin,
archived: false,
parentTeamId: null,
childrenTeams: [],
createdAt: new Date(),
updatedAt: new Date(),
externalTeamId: null,
},
dreamTeamWithManagers: {
id: '72d62fe8-459c-429a-bda0-e46d0a500afb',
name: 'dreamteam with managers',
user: users.admin,
archived: false,
parentTeamId: null,
childrenTeams: [],
createdAt: new Date(),
updatedAt: new Date(),
externalTeamId: null,
},
emptyTeam: {
id: 'c464c016-58b3-423d-81cc-9eea249cfea6',
name: 'EMPTY team',
user: users.admin,
archived: false,
parentTeamId: null,
childrenTeams: [],
createdAt: new Date(),
updatedAt: new Date(),
externalTeamId: null,
},
} as const satisfies Record<string, Team>;
|