mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Posters/Banners/Fanart served from App_Data
This commit is contained in:
parent
16e00d77ca
commit
16e13e0c24
7 changed files with 72 additions and 28 deletions
19
NzbDrone.Api/Frontend/IMapHttpRequestsToDisk.cs
Normal file
19
NzbDrone.Api/Frontend/IMapHttpRequestsToDisk.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Api.Frontend
|
||||
{
|
||||
public interface IMapHttpRequestsToDisk
|
||||
{
|
||||
string Map(string resourceUrl);
|
||||
RequestType IHandle { get; }
|
||||
}
|
||||
|
||||
public enum RequestType
|
||||
{
|
||||
StaticResources,
|
||||
MediaCovers
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue