Skip to content

Commit b48fedb

Browse files
feat(api): add status to campaign participation eligibility data
1 parent 8ec74ef commit b48fedb

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

api/src/prescription/organization-learner/application/api/read-models/OrganizationLearnerWithParticipations.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ export class OrganizationLearnerWithParticipations {
1010
tags: tagNames,
1111
type: organization.type,
1212
};
13-
this.campaignParticipations = campaignParticipations.map(({ id, targetProfileId }) => ({ id, targetProfileId }));
13+
this.campaignParticipations = campaignParticipations.map(({ id, targetProfileId, status }) => ({
14+
id,
15+
targetProfileId,
16+
status,
17+
}));
1418
}
1519
}

api/src/quest/domain/usecases/reward-user.js

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export const rewardUser = async ({
88
if (!userId) {
99
return;
1010
}
11-
1211
const quests = await questRepository.findAll();
1312

1413
if (quests.length === 0) {

api/tests/prescription/organization-learner/unit/application/api/models/OrganizationLearnerWithParticipations_test.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,16 @@ describe('Unit | Application| API | Models | OrganizationLearnerWithParticipatio
3737
type: organization.type,
3838
});
3939
expect(organizationLearnerWithParticipations.campaignParticipations).to.deep.have.members([
40-
{ targetProfileId: participationsList[0].targetProfileId, id: participationsList[0].id },
41-
{ targetProfileId: participationsList[1].targetProfileId, id: participationsList[1].id },
40+
{
41+
targetProfileId: participationsList[0].targetProfileId,
42+
id: participationsList[0].id,
43+
status: participationsList[0].status,
44+
},
45+
{
46+
targetProfileId: participationsList[1].targetProfileId,
47+
id: participationsList[1].id,
48+
status: participationsList[1].status,
49+
},
4250
]);
4351
});
4452
});

api/tests/prescription/organization-learner/unit/application/api/organization-learners-with-participations-api_test.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ describe('Unit | API | Organization Learner With Participations', function () {
4646
tags: tagNames,
4747
type: organization1.type,
4848
},
49-
campaignParticipations: campaignParticipations.map(({ id, targetProfileId }) => ({ id, targetProfileId })),
49+
campaignParticipations: campaignParticipations.map(({ id, targetProfileId, status }) => ({
50+
id,
51+
targetProfileId,
52+
status,
53+
})),
5054
},
5155
{
5256
organizationLearner: {
@@ -59,7 +63,11 @@ describe('Unit | API | Organization Learner With Participations', function () {
5963
tags: tagNames,
6064
type: organization2.type,
6165
},
62-
campaignParticipations: campaignParticipations.map(({ id, targetProfileId }) => ({ id, targetProfileId })),
66+
campaignParticipations: campaignParticipations.map(({ id, targetProfileId, status }) => ({
67+
id,
68+
targetProfileId,
69+
status,
70+
})),
6371
},
6472
]);
6573
});

0 commit comments

Comments
 (0)