Skip to content

Commit

Permalink
populate get status
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Jul 2, 2024
1 parent 4b2205f commit 4d7cf66
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions JiraPlugin/JIRATicketingSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using RestSharp.Authenticators;
using System.Security.Principal;
using Microsoft.Win32;
using Rdmp.Core.Curation;

namespace JiraPlugin;

Expand Down Expand Up @@ -53,6 +54,11 @@ private void GetAttachementsOfJIRATicket(string ticket)
JIRAProjectAttachements = issue.fields.attachment;
}

public override List<string> GetAvailableStatuses()

Check failure on line 57 in JiraPlugin/JIRATicketingSystem.cs

View workflow job for this annotation

GitHub Actions / package

'JIRATicketingSystem.GetAvailableStatuses()': no suitable method found to override
{
return _client.GetStatuses().Select(x => x.name).ToList();
}

private Issue GetIssue(string ticket)
{
return _client.GetIssue(ticket);
Expand Down

0 comments on commit 4d7cf66

Please sign in to comment.