Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Database
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
libraries
Database
Merge requests
!180
Fix: Update dependencies
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix: Update dependencies
Issue/2101-gitLabResTypeUi
into
dev
Overview
0
Commits
2
Pipelines
4
Changes
1
Merged
Petar Hristov
requested to merge
Issue/2101-gitLabResTypeUi
into
dev
2 years ago
Overview
0
Commits
2
Pipelines
4
Changes
1
Expand
coscine/issues#2101
0
0
Merge request reports
Compare
dev
version 1
499502b8
2 years ago
dev (base)
and
latest version
latest version
262ca7e2
2 commits,
2 years ago
version 1
499502b8
1 commit,
2 years ago
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Database/ReturnObjects/GitlabResourceTypeObject.cs
+
4
−
4
Options
@@ -6,17 +6,17 @@ namespace Coscine.Database.ReturnObjects
public
class
GitlabResourceTypeObject
:
ResourceTypeOptionObject
{
public
Guid
Id
{
get
;
set
;
}
public
string
Branch
Name
{
get
;
set
;
}
public
string
Branch
{
get
;
set
;
}
public
int
ProjectId
{
get
;
set
;
}
public
Uri
Repo
sitory
Url
{
get
;
set
;
}
public
Uri
RepoUrl
{
get
;
set
;
}
public
string
AccessToken
{
get
;
set
;
}
public
GitlabResourceTypeObject
(
Guid
id
,
string
branchName
,
int
projectId
,
string
repoUrl
,
string
accessToken
)
{
Id
=
id
;
Branch
Name
=
branchName
;
Branch
=
branchName
;
ProjectId
=
projectId
;
Repo
sitory
Url
=
new
Uri
(
repoUrl
);
RepoUrl
=
new
Uri
(
repoUrl
);
AccessToken
=
accessToken
;
}
}
Loading