mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Implimented the new TV show Provider (needed for Sonarr TheTvDB)
This commit is contained in:
parent
a8b6137ef8
commit
ff81e67ab0
8 changed files with 299 additions and 11 deletions
|
@ -24,14 +24,16 @@
|
|||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
// ************************************************************************/
|
||||
#endregion
|
||||
using System;
|
||||
|
||||
using RequestPlex.Helpers;
|
||||
|
||||
namespace RequestPlex.Api
|
||||
{
|
||||
public abstract class MovieBase
|
||||
public abstract class TvBase
|
||||
{
|
||||
private static readonly string Encrypted = "0T3QNSseexLO7n7UPiJvl70Y+KKnvbeTlsusl7Kwq0hPH0BHOuFNGwksNCjkwqWedyDdI/MJeUR4wtL4bIl0Z+//uHXEaYM/4H2pjeLbH5EWdUe5TTj1AhaIR5PQweamvcienRyFD/3YPCC/+qL5mHkKXBkPumMod3Zb/4yN0Ik=";
|
||||
protected string ApiKey = StringCipher.Decrypt(Encrypted, "ApiKey");
|
||||
protected string Url = "http://api.themoviedb.org/3";
|
||||
protected Uri Url = new Uri("http://api.themoviedb.org/3");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue