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
!182
Release: Sprint/2022 21
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Release: Sprint/2022 21
dev
into
master
Overview
0
Commits
2
Pipelines
1
Changes
1
Merged
Petar Hristov
requested to merge
dev
into
master
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
1
Expand
This Merge Request is automatically created
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
34fef778
2 commits,
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