summaryrefslogtreecommitdiff
path: root/Acl.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-09-30 00:52:18 +1000
committerJake Mannens <jake@asger.xyz>2023-09-30 00:52:18 +1000
commit7170867a9a2650fa5a98b9e2664fb2114a0bf114 (patch)
tree203ba091c5782fdcf19ed53f2e3faf6749678746 /Acl.cs
parentf9d34b1d61c3877c64828e23a0090f49c7418928 (diff)
Patched MemoryCache and DB schema
Diffstat (limited to 'Acl.cs')
-rw-r--r--Acl.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Acl.cs b/Acl.cs
index 8beff0c..7bffc50 100644
--- a/Acl.cs
+++ b/Acl.cs
@@ -10,7 +10,6 @@ public enum AclRuleAction {
public class Acl {
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int AclId { get; set; }
- [ForeignKey("ObjectId")]
public HBObject Subject { get; set; }
public List<AclRule> Rules { get; set; }
}