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
Commits
262ca7e2
Commit
262ca7e2
authored
2 years ago
by
Petar Hristov
Browse files
Options
Downloads
Patches
Plain Diff
Fixed object prop names
parent
499502b8
No related branches found
No related tags found
1 merge request
!180
Fix: Update dependencies
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Database/ReturnObjects/GitlabResourceTypeObject.cs
+2
-2
2 additions, 2 deletions
src/Database/ReturnObjects/GitlabResourceTypeObject.cs
with
2 additions
and
2 deletions
src/Database/ReturnObjects/GitlabResourceTypeObject.cs
+
2
−
2
View file @
262ca7e2
...
...
@@ -6,7 +6,7 @@ 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
RepoUrl
{
get
;
set
;
}
public
string
AccessToken
{
get
;
set
;
}
...
...
@@ -14,7 +14,7 @@ namespace Coscine.Database.ReturnObjects
public
GitlabResourceTypeObject
(
Guid
id
,
string
branchName
,
int
projectId
,
string
repoUrl
,
string
accessToken
)
{
Id
=
id
;
Branch
Name
=
branchName
;
Branch
=
branchName
;
ProjectId
=
projectId
;
RepoUrl
=
new
Uri
(
repoUrl
);
AccessToken
=
accessToken
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment