forked from vikunja/frontend
Dominik Pschenitschni
4908469d49
Also align repo closer to `create-vue` template and improve cypress integration
14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
import {Factory} from '../support/factory'
|
|
|
|
export class TeamMemberFactory extends Factory {
|
|
static table = 'team_members'
|
|
|
|
static factory() {
|
|
return {
|
|
team_id: 1,
|
|
user_id: 1,
|
|
admin: false,
|
|
created: new Date().toISOString(),
|
|
}
|
|
}
|
|
} |