mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Added Radarr and Sonarr settings pages #865
This commit is contained in:
parent
34d1309114
commit
ecae241049
9 changed files with 134 additions and 54 deletions
|
@ -1,5 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Ombi.Api.Radarr.Models;
|
||||
|
||||
|
@ -7,9 +6,9 @@ namespace Ombi.Api.Radarr
|
|||
{
|
||||
public interface IRadarrApi
|
||||
{
|
||||
Task<List<MovieResponse>> GetMovies(string apiKey, Uri baseUrl);
|
||||
Task<List<RadarrProfile>> GetProfiles(string apiKey, Uri baseUrl);
|
||||
Task<List<RadarrRootFolder>> GetRootFolders(string apiKey, Uri baseUrl);
|
||||
Task<SystemStatus> SystemStatus(string apiKey, Uri baseUrl);
|
||||
Task<List<MovieResponse>> GetMovies(string apiKey, string baseUrl);
|
||||
Task<List<RadarrProfile>> GetProfiles(string apiKey, string baseUrl);
|
||||
Task<List<RadarrRootFolder>> GetRootFolders(string apiKey, string baseUrl);
|
||||
Task<SystemStatus> SystemStatus(string apiKey, string baseUrl);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue