Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NodeClientSharedCode
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
NodeClientSharedCode
Compare revisions
55a94e77db69635e1ca837a52de29cb04d0b4138 to 60ce3995edec4f907f62dd03a32cc24660de51b1
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/nodeclientsharedcode
Select target project
No results found
60ce3995edec4f907f62dd03a32cc24660de51b1
Select Git revision
Swap
Target
dojo_project/projects/shared/nodeclientsharedcode
Select target project
dojo_project/projects/shared/nodeclientsharedcode
1 result
55a94e77db69635e1ca837a52de29cb04d0b4138
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (5)
tag commandes
· b5b61aa3
vincent.steinman
authored
1 year ago
and
michael.minelli
committed
1 year ago
b5b61aa3
fix copy issue
· 20bcd68f
vincent.steinman
authored
1 year ago
and
michael.minelli
committed
1 year ago
20bcd68f
fix param/body for add, delete
· 6dcb8ac6
vincent.steinman
authored
1 year ago
and
michael.minelli
committed
1 year ago
6dcb8ac6
split tag managers with tag submit manager
· 99d3ef4b
vincent.steinman
authored
1 year ago
and
michael.minelli
committed
1 year ago
99d3ef4b
fixed answer to submission but removed URL param
· 60ce3995
vincent.steinman
authored
1 year ago
and
michael.minelli
committed
1 year ago
60ce3995
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
models/Tag.ts
+17
-0
17 additions, 0 deletions
models/Tag.ts
models/TagSubmit.ts
+7
-0
7 additions, 0 deletions
models/TagSubmit.ts
types/Dojo/ApiRoute.ts
+4
-0
4 additions, 0 deletions
types/Dojo/ApiRoute.ts
with
28 additions
and
0 deletions
models/Tag.ts
0 → 100644
View file @
60ce3995
import
{
CommitSchema
}
from
'
@gitbeaker/rest
'
;
import
Assignment
from
'
./Assignment
'
;
import
Exercise
from
'
./Exercise
'
;
interface
Tags
{
name
:
string
;
type
:
'
Language
'
|
'
Framework
'
|
'
Theme
'
|
'
UserDefined
'
;
exercise
:
Exercise
|
undefined
;
assignment
:
Assignment
|
undefined
;
correctionCommit
:
CommitSchema
|
undefined
;
}
export
default
Tags
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
models/TagSubmit.ts
0 → 100644
View file @
60ce3995
interface
TagSubmit
{
name
:
string
;
type
:
'
Language
'
|
'
Framework
'
|
'
Theme
'
|
'
UserDefined
'
;
state
:
'
PendingApproval
'
|
'
Declined
'
|
'
Approved
'
;
}
export
default
TagSubmit
;
This diff is collapsed.
Click to expand it.
types/Dojo/ApiRoute.ts
View file @
60ce3995
...
...
@@ -12,6 +12,10 @@ enum ApiRoute {
EXERCISE_CREATE
=
'
/assignments/{{assignmentNameOrUrl}}/exercises
'
,
EXERCISE_ASSIGNMENT
=
'
/exercises/{{exerciseIdOrUrl}}/assignment
'
,
EXERCISE_RESULTS
=
'
/exercises/{{exerciseIdOrUrl}}/results
'
ADD_TAG
=
'
/tags
'
,
DELETE_TAG
=
'
/tags/{{tageName}}
'
,
PROPOSE_TAG
=
'
/tags/proposals/{{tagState}}
'
,
//ANSWER_TAG_PROPOSAL = '/tags/proposals/{{tagProposalName}}'
}
...
...
This diff is collapsed.
Click to expand it.