Skip to content

Commit 90a4c61

Browse files
acoard-aotRyanBirtch-aotmidhun-aotnikhila-aotsakthi-aot
authored
Merge dev into main, include logging removals (#432)
* Added disclosure in CSSA, and collection notice in CSSA and SRCR * hide forms for reviewre * Made changes to non bundled forms * Further changes to homepage after discussion with Haley * Update ff changes to dev-5.2.0 (#407) * test imagetsream * update the formsflow-ai-charts folder with 5.2.0v * commiting new ff changes * merge comments resolved * removing the secrets * removing the secrets * removing code owners * deleting the file * added a javascript login to handle approving authority validations * corrected format * changes to support form adapter * updated name for SDS form * updated name & path for sds form * GitHub Actions for nav/theme/web-ee/root-config * updating notes column width * Added hiding logic for signature field * Configure CI/CD scripts to trigger on temp dev branch to experiment * Update CI scripts to trigger build on the script change * Update namespace env name to use existing secret * Fix secret -> secrets typo * Update env setter for non-dev branch during active development * fixed site owner actons and notes section displayed for new forms * Fix env var for nav/theme/ee for non dev branch * Matched names * removing log statements from service --------- Co-authored-by: RyanBirtch-aot <ryan.birtch@aot-technologies.com> Co-authored-by: midhun-aot <midhun.murali@aot-technologies.com> Co-authored-by: nikhila-aot <38471389+nikhila-aot@users.noreply.github.com> Co-authored-by: sakthi-aot <81777282+sakthi-aot@users.noreply.github.com> Co-authored-by: nikhila-aot <nikhila.pankaj@aot-technologies.com> Co-authored-by: midhun-aot <105463561+midhun-aot@users.noreply.github.com>
1 parent 2a21e2b commit 90a4c61

2 files changed

Lines changed: 5 additions & 9 deletions

File tree

backend/applications/src/app.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export class AppService {
77
return 'Hello World!';
88
}
99
confirmFormSubmission(formRequest: Request): any {
10-
console.log('testing form submit');
10+
1111
return formRequest;
1212
}
1313
}

backend/applications/src/app/services/form.service.ts

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ export class FormService {
3636

3737
buildUpdateString = (pathText, newValue) => {
3838
const returnString =
39-
'jsonb_set("form_data"::jsonb,' + pathText + ',' + newValue + ')';
40-
console.log(returnString);
39+
'jsonb_set("form_data"::jsonb,' + pathText + ',' + newValue + ')';
4140
return returnString;
4241
};
4342

@@ -47,9 +46,7 @@ export class FormService {
4746
formId,
4847
submissionId,
4948
) => {
50-
console.log('partialUpdateObject', partialUpdateObject);
51-
console.log('parentObjectNames', parentObjectNames);
52-
49+
5350
for (const property in partialUpdateObject) {
5451
if (typeof partialUpdateObject[property] === 'object') {
5552
this.processContent(
@@ -67,14 +64,13 @@ export class FormService {
6764
} else {
6865
objectName = property;
6966
}
70-
console.log('objectName', objectName);
71-
console.log('objectName value', partialUpdateObject[property]);
67+
7268

7369
const pathText = "'{" + objectName + "}'";
7470

7571
const newValue = '\'"' + partialUpdateObject[property] + '"\'';
7672

77-
console.log(pathText, newValue);
73+
7874

7975
await this.formRepository
8076
.createQueryBuilder()

0 commit comments

Comments
 (0)