summaryrefslogtreecommitdiff
path: root/Services/SecurityService.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-09-20 15:53:05 +1000
committerJake Mannens <jake@asger.xyz>2023-09-25 16:02:18 +1000
commit39eead0052215d7be4f49906e987fef7fb0c700b (patch)
treea7381d06ee6cab9d4ce72d1e2a7121bc93193c6d /Services/SecurityService.cs
parentfbaa4e43709a96774ebe42b7ec5908c1c0f310d7 (diff)
Fixed migration and began adding ACL edit dialog
Diffstat (limited to 'Services/SecurityService.cs')
-rw-r--r--Services/SecurityService.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Services/SecurityService.cs b/Services/SecurityService.cs
index c8dafd5..6e5ecb8 100644
--- a/Services/SecurityService.cs
+++ b/Services/SecurityService.cs
@@ -1,4 +1,5 @@
using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.Caching.Memory;
using System.Data;
namespace HyperBooru.Services;
@@ -6,8 +7,8 @@ namespace HyperBooru.Services;
public class SecurityService {
private IDbContextFactory<HBContext> dbFactory;
- private Group[] groups;
- private Acl[] acls;
+ private Group[] groups;
+ private Acl[] acls;
public SecurityService(IDbContextFactory<HBContext> dbFactory) {
this.dbFactory = dbFactory;