Skip to content
Merged

Dev #191

Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
comments added
  • Loading branch information
RohitKini committed Jul 11, 2024
commit 5815ac24c2f39ae89df6ac2f0fb4788e054f1e4b
9 changes: 8 additions & 1 deletion api/src/services/projects.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,14 @@ const affixConfirmation = async (req: Request) => {

const updateFileFormat = async (req: Request) => {
const { orgId, projectId } = req.params;
const { token_payload, file_format,file_path,is_localPath,is_fileValid,awsDetails } = req.body;
const {
token_payload,
file_format,
file_path,
is_localPath,
is_fileValid,
awsDetails,
} = req.body;
const srcFunc = "updateFileFormat";
const projectIndex = (await getProjectUtil(
projectId,
Expand Down