Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NodeSharedCode
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
Shared
NodeSharedCode
Compare revisions
bd29fe76fdb1b124e3fe2f23e995a2b3b70694a7 to 8efab438a60569011f2757c803a89c81bc46a174
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/shared/nodesharedcode
Select target project
No results found
8efab438a60569011f2757c803a89c81bc46a174
Select Git revision
Swap
Target
dojo_project/projects/shared/nodesharedcode
Select target project
dojo_project/projects/shared/nodesharedcode
1 result
bd29fe76fdb1b124e3fe2f23e995a2b3b70694a7
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Add sonar route and error
· 8efab438
joel.vonderwe
authored
11 months ago
8efab438
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
types/Dojo/DojoStatusCode.ts
+1
-0
1 addition, 0 deletions
types/Dojo/DojoStatusCode.ts
types/Sonar/SonarRoute.ts
+2
-0
2 additions, 0 deletions
types/Sonar/SonarRoute.ts
with
3 additions
and
0 deletions
types/Dojo/DojoStatusCode.ts
View file @
8efab438
...
@@ -12,6 +12,7 @@ enum DojoStatusCode {
...
@@ -12,6 +12,7 @@ enum DojoStatusCode {
EXERCISE_CORRECTION_NOT_EXIST
=
206
,
EXERCISE_CORRECTION_NOT_EXIST
=
206
,
EXERCISE_CORRECTION_ALREADY_EXIST
=
207
,
EXERCISE_CORRECTION_ALREADY_EXIST
=
207
,
ASSIGNMENT_CREATION_SONAR_ERROR
=
208
,
ASSIGNMENT_CREATION_SONAR_ERROR
=
208
,
ASSIGNMENT_CREATION_SONAR_MEMBER
=
209
,
EXERCISE_CREATION_GITLAB_ERROR
=
302
,
EXERCISE_CREATION_GITLAB_ERROR
=
302
,
EXERCISE_CREATION_INTERNAL_ERROR
=
303
,
EXERCISE_CREATION_INTERNAL_ERROR
=
303
,
MAX_EXERCISE_PER_ASSIGNMENT_REACHED
=
304
,
MAX_EXERCISE_PER_ASSIGNMENT_REACHED
=
304
,
...
...
This diff is collapsed.
Click to expand it.
types/Sonar/SonarRoute.ts
View file @
8efab438
...
@@ -3,10 +3,12 @@ enum SonarRoute {
...
@@ -3,10 +3,12 @@ enum SonarRoute {
PROJECT_CREATE_GITLAB
=
'
/api/alm_integrations/import_gitlab_project
'
,
PROJECT_CREATE_GITLAB
=
'
/api/alm_integrations/import_gitlab_project
'
,
PROJECT_ADD_GATE
=
'
/api/qualitygates/select
'
,
PROJECT_ADD_GATE
=
'
/api/qualitygates/select
'
,
PROJECT_ADD_PROFILE
=
'
/api/qualityprofiles/add_project
'
,
PROJECT_ADD_PROFILE
=
'
/api/qualityprofiles/add_project
'
,
PROJECT_ADD_USER
=
'
/api/permissions/add_user
'
,
PROJECT_DELETE
=
'
/api/projects/delete
'
,
PROJECT_DELETE
=
'
/api/projects/delete
'
,
GET_LANGUAGES
=
'
/api/languages/list
'
,
GET_LANGUAGES
=
'
/api/languages/list
'
,
TEST_GATE
=
'
/api/qualitygates/show
'
,
TEST_GATE
=
'
/api/qualitygates/show
'
,
TEST_PROFILE
=
'
/api/qualityprofiles/search
'
,
TEST_PROFILE
=
'
/api/qualityprofiles/search
'
,
SEARCH_USER
=
'
/api/users/search
'
}
}
export
default
SonarRoute
;
export
default
SonarRoute
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.