mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
parent
a4b0e9e1d3
commit
33398084be
11 changed files with 382 additions and 0 deletions
|
@ -179,5 +179,16 @@ namespace PlexRequests.Core.StatusChecker
|
|||
|
||||
return model;
|
||||
}
|
||||
|
||||
public async Task<Issue> ReportBug(string title, string body)
|
||||
{
|
||||
var issue = new NewIssue(title)
|
||||
{
|
||||
Body = body
|
||||
};
|
||||
var result = await Git.Issue.Create(Owner, RepoName, issue);
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue