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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dojo Project (HES-SO)
Projects
Shared
NodeSharedCode
Compare revisions
eb25eb9883534be4bfe108925ef17a5c41d58d8a to efe1bf313f57d1826faf935c183d37a0835f8c2d
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
efe1bf313f57d1826faf935c183d37a0835f8c2d
Select Git revision
Branches
jw_sonar
jw_sonar_backup
main
move-to-esm-only
open_tool_for_self_hosting
v5.0
Tags
v4.1
v4.2
8 results
Swap
Target
dojo_project/projects/shared/nodesharedcode
Select target project
dojo_project/projects/shared/nodesharedcode
1 result
eb25eb9883534be4bfe108925ef17a5c41d58d8a
Select Git revision
Branches
jw_sonar
jw_sonar_backup
main
move-to-esm-only
open_tool_for_self_hosting
v5.0
Tags
v4.1
v4.2
8 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
AssignmentHelper => Fix text
· efe1bf31
michael.minelli
authored
1 year ago
efe1bf31
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
helpers/Dojo/SharedAssignmentHelper.ts
+3
-3
3 additions, 3 deletions
helpers/Dojo/SharedAssignmentHelper.ts
with
3 additions
and
3 deletions
helpers/Dojo/SharedAssignmentHelper.ts
View file @
efe1bf31
...
@@ -81,16 +81,16 @@ class SharedAssignmentHelper {
...
@@ -81,16 +81,16 @@ class SharedAssignmentHelper {
if
(
lastPipeline
.
status
!=
GitlabPipelineStatus
.
SUCCESS
)
{
if
(
lastPipeline
.
status
!=
GitlabPipelineStatus
.
SUCCESS
)
{
return
{
return
{
isPublishable
:
false
,
isPublishable
:
false
,
lastPipeline
:
p
ipeline
s
[
0
]
,
lastPipeline
:
lastP
ipeline
,
status
:
{
status
:
{
code
:
DojoStatusCode
.
ASSIGNMENT_PUBLISH_PIPELINE_FAILED
,
code
:
DojoStatusCode
.
ASSIGNMENT_PUBLISH_PIPELINE_FAILED
,
message
:
'
Last pipeline status is not "
success
".
'
message
:
`
Last pipeline status is not "
${
GitlabPipelineStatus
.
SUCCESS
}
" but "
${
lastPipeline
.
status
}
".
`
}
}
};
};
}
else
{
}
else
{
return
{
return
{
isPublishable
:
true
,
isPublishable
:
true
,
lastPipeline
:
p
ipeline
s
[
0
]
lastPipeline
:
lastP
ipeline
};
};
}
}
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.