Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DojoBackendAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dojo Project (HES-SO)
Projects
Backend
DojoBackendAPI
Compare revisions
7ffb016f4553519fe125a882646e41c86c3e6a1f to fd985731f0cdfa53e429d70dd77279b03a306dfb
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dojo_project/projects/backend/dojobackendapi
Select target project
No results found
fd985731f0cdfa53e429d70dd77279b03a306dfb
Select Git revision
Branches
add_route_assignments
ask-user-to-delete-exercises-on-duplicates
bedran_exercise-list
jw_sonar
jw_sonar_backup
main
update-dependencies
v6.0.0
Tags
2.0.0
2.1.0
2.2.0
3.0.0
3.0.1
3.1.0
3.1.1
3.1.2
3.1.3
3.2.0
3.3.0
3.4.0
3.4.1
3.4.2
3.5.0
3.5.1
3.5.2
3.5.3
4.0.0
4.1.0
5.0.0
5.0.1
6.0.0-dev
v1.0.1
32 results
Swap
Target
dojo_project/projects/backend/dojobackendapi
Select target project
Dojo_Project_Nguyen/backend/dojobackendapi
dojo_project/projects/backend/dojobackendapi
2 results
7ffb016f4553519fe125a882646e41c86c3e6a1f
Select Git revision
Branches
add_route_assignments
ask-user-to-delete-exercises-on-duplicates
bedran_exercise-list
jw_sonar
jw_sonar_backup
main
update-dependencies
v6.0.0
Tags
2.0.0
2.1.0
2.2.0
3.0.0
3.0.1
3.1.0
3.1.1
3.1.2
3.1.3
3.2.0
3.3.0
3.4.0
3.4.1
3.4.2
3.5.0
3.5.1
3.5.2
3.5.3
4.0.0
4.1.0
5.0.0
5.0.1
6.0.0-dev
v1.0.1
32 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
ExerciceRoutes => Bug fix: Replace all ':' of time by '_'
· fd985731
michael.minelli
authored
1 year ago
fd985731
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ExpressAPI/src/routes/ExerciceRoutes.ts
+1
-1
1 addition, 1 deletion
ExpressAPI/src/routes/ExerciceRoutes.ts
with
1 addition
and
1 deletion
ExpressAPI/src/routes/ExerciceRoutes.ts
View file @
fd985731
...
@@ -218,7 +218,7 @@ class ExerciceRoutes implements RoutesManager {
...
@@ -218,7 +218,7 @@ class ExerciceRoutes implements RoutesManager {
}
}
});
});
fs
.
writeFileSync
(
path
.
join
(
Config
.
getResultsFolder
(
exercice
),
`
${
result
.
dateTime
.
toISOString
().
replace
(
'
:
'
,
'
-
'
)
}
.tar.gz`
),
params
.
archiveBase64
,
'
base64
'
);
fs
.
writeFileSync
(
path
.
join
(
Config
.
getResultsFolder
(
exercice
),
`
${
result
.
dateTime
.
toISOString
().
replace
(
/:/g
,
'
_
'
)
}
.tar.gz`
),
params
.
archiveBase64
,
'
base64
'
);
req
.
session
.
sendResponse
(
res
,
StatusCodes
.
OK
);
req
.
session
.
sendResponse
(
res
,
StatusCodes
.
OK
);
}
}
...
...
This diff is collapsed.
Click to expand it.