-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/sprint17 #43
Feat/sprint17 #43
Conversation
113ddfd
to
152f9ab
Compare
152f9ab
to
a7374f8
Compare
@@ -4,6 +4,7 @@ import { LunaticData } from "interface/lunatic/Lunatic"; | |||
export interface UserSurveys { | |||
id?: number; | |||
campaignId: string; | |||
subCampaignId?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoud be removed
@@ -8,4 +8,5 @@ export interface Household { | |||
surveyDate?: string; | |||
stats: StatsHousehold; | |||
campaingId: string; | |||
subCampaignId?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoud be removed
@@ -236,6 +238,7 @@ const activitySurveyDemo = () => { | |||
surveyUnitId: "activitySurvey" + i, | |||
questionnaireModelId: SourcesEnum.ACTIVITY_SURVEY, | |||
campaignId: "", | |||
subCampaignId: "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoud be removed
@@ -258,6 +261,7 @@ const workTimeSurveyDemo = () => { | |||
surveyUnitId: "workTimeSurvey" + i, | |||
questionnaireModelId: SourcesEnum.WORK_TIME_SURVEY, | |||
campaignId: "", | |||
subCampaignId: "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoud be removed
@@ -1339,6 +1369,7 @@ const createNameSurveyMap = (idSurveys: string[]) => { | |||
: SourcesEnum.WORK_TIME_SURVEY, | |||
id: 0, | |||
campaignId: "", | |||
subCampaignId: "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoud be removed
@@ -1426,6 +1457,7 @@ const arrayOfSurveysPersonDemo = (interviewer: string, index: number): Person[] | |||
surveyUnitId: getIdSurveyActivity(interviewer, 0), | |||
interviewerId: interviewer, | |||
campaignId: "", | |||
subCampaignId: "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoud be removed
@@ -1436,6 +1468,7 @@ const arrayOfSurveysPersonDemo = (interviewer: string, index: number): Person[] | |||
surveyUnitId: getIdSurveyActivity(interviewer, 1), | |||
interviewerId: interviewer, | |||
campaignId: "", | |||
subCampaignId: "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoud be removed
@@ -1446,6 +1479,7 @@ const arrayOfSurveysPersonDemo = (interviewer: string, index: number): Person[] | |||
surveyUnitId: getIdSurveyWorkTime(interviewer), | |||
interviewerId: interviewer, | |||
campaignId: "", | |||
subCampaignId: "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoud be removed
9cf7295
to
4d10b2f
Compare
4d10b2f
to
c4884c2
Compare
Quality Gate failedFailed conditions 0.0% Coverage on New Code (required ≥ 80%) See analysis details on SonarCloud Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
No description provided.