DXVcs2Git.UI.ViewModels.BranchViewModel.UpdateMergeRequest C# (CSharp) Méthode

UpdateMergeRequest() public méthode

public UpdateMergeRequest ( string comment ) : void
comment string
Résultat void
        public void UpdateMergeRequest(string comment)
        {
            this.gitLabWrapper.AddCommentToMergeRequest(MergeRequest.MergeRequest, comment);
        }

Same methods

BranchViewModel::UpdateMergeRequest ( string title, string description, string assignee ) : void

Usage Example

 void UseCommitDescription(CommitViewModel commit)
 {
     BranchViewModel.UpdateMergeRequest(commit.Title, BranchViewModel.MergeRequest.MergeRequest.Description, BranchViewModel.MergeRequest.Assignee);
     RepositoriesViewModel.RaiseRefreshSelectedBranch();
 }