Skip to content

Commit

Permalink
Fix: #274 필터링 조건 변경에 따른 mock 데이터 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Seok93 committed Nov 28, 2024
1 parent 7db79e5 commit 43447e4
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions src/mocks/mockData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,123 +327,123 @@ export const TEAM_USER_DUMMY: TeamUser[] = [
teamId: 1,
userId: 1,
roleId: 1,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 1,
userId: 3,
roleId: 2,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 1,
userId: 4,
roleId: 3,
isPendingApproval: false,
isPendingApproval: true,
},
{
teamId: 1,
userId: 8,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 1,
userId: 9,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 1,
userId: 11,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 1,
userId: 12,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 1,
userId: 13,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 1,
userId: 14,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 1,
userId: 15,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
// 팀2 소속 유저 정보
{
teamId: 2,
userId: 1,
roleId: 2,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 2,
userId: 3,
roleId: 2,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 2,
userId: 4,
roleId: 1,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 2,
userId: 5,
roleId: 3,
isPendingApproval: false,
isPendingApproval: true,
},
{
teamId: 2,
userId: 7,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 2,
userId: 10,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
// 팀3 소속 유저 정보
{
teamId: 3,
userId: 1,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 3,
userId: 2,
roleId: 3,
isPendingApproval: true,
isPendingApproval: false,
},
{
teamId: 3,
userId: 5,
roleId: 2,
isPendingApproval: false,
isPendingApproval: true,
},
{
teamId: 3,
userId: 6,
roleId: 1,
isPendingApproval: true,
isPendingApproval: false,
},
] as const;

Expand Down

0 comments on commit 43447e4

Please sign in to comment.