mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
Fixed the issue where we could sometimes allow the request of a whole series when the user shouldn't be able to
This commit is contained in:
parent
527bc00c09
commit
417e4085c5
4 changed files with 91 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Ombi.Store.Repository.Requests;
|
||||
|
||||
|
@ -22,6 +23,8 @@ namespace Ombi.Store.Entities.Requests
|
|||
[NotMapped]
|
||||
public bool ShowSubscribe { get; set; }
|
||||
|
||||
[NotMapped]
|
||||
public DateTime ReleaseYear { get; set; } // Used in the ExistingPlexRequestRule.cs
|
||||
|
||||
[ForeignKey(nameof(IssueId))]
|
||||
public List<Issues> Issues { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue