Skip to content

Commit

Permalink
wtf
Browse files Browse the repository at this point in the history
  • Loading branch information
nayr974 committed Nov 7, 2024
1 parent d6e39ab commit 9d8e107
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nr-compliance-enforcement",
"version": "0.28.1",
"version": "0.0.1",
"description": "BCGov devops quickstart. For reference, testing and new projects.",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions backend/src/v1/case_file/case_file.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ export class CaseFileService {
return returnValue?.createAssessment;
}

async updateAssessment(token: string, model: CaseFileDto): Promise<CaseFileDto> {
updateAssessment = async (token: string, model: CaseFileDto): Promise<CaseFileDto> => {
let returnValue;
let modelAsAny: any = { ...model };

Expand Down Expand Up @@ -440,7 +440,7 @@ export class CaseFileService {
returnValue = await this.handleAPIResponse(result);
}
return returnValue?.updateAssessment;
}
};

createReview = async (token: string, model: CaseFileDto): Promise<CaseFileDto> => {
const result = await post(token, {
Expand Down

0 comments on commit 9d8e107

Please sign in to comment.