mirror of https://github.com/portainer/portainer
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
|
import { TeamViewModel } from '@/portainer/models/team';
|
||
|
|
||
|
export function createMockTeam(id: number, name: string): TeamViewModel {
|
||
|
return {
|
||
|
Id: id,
|
||
|
Name: name,
|
||
|
Checked: false,
|
||
|
};
|
||
|
}
|