Skip to content
Snippets Groups Projects
Commit 34fef778 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Merge branch 'Issue/2101-gitLabResTypeUi' into 'dev'

Fix: Update dependencies

See merge request !180
parents 7a074d79 b33dd7ad
No related branches found
No related tags found
2 merge requests!182Release: Sprint/2022 21 :robot:,!180Fix: Update dependencies
......@@ -6,17 +6,17 @@ namespace Coscine.Database.ReturnObjects
public class GitlabResourceTypeObject : ResourceTypeOptionObject
{
public Guid Id { get; set; }
public string BranchName { get; set; }
public string Branch { get; set; }
public int ProjectId { get; set; }
public Uri RepositoryUrl { 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;
BranchName = branchName;
Branch = branchName;
ProjectId = projectId;
RepositoryUrl = new Uri(repoUrl);
RepoUrl = new Uri(repoUrl);
AccessToken = accessToken;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment