From 65b6f3a606e81bf352bf0153dc78063cdad58c65 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Tue, 18 Nov 2025 18:40:23 +0800 Subject: [PATCH] :bug: Fix bugs --- DysonNetwork.Drive/Storage/FileController.cs | 2 -- DysonNetwork.Pass/Auth/AuthService.cs | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/DysonNetwork.Drive/Storage/FileController.cs b/DysonNetwork.Drive/Storage/FileController.cs index 9f0e04cf..dfd5fa5d 100644 --- a/DysonNetwork.Drive/Storage/FileController.cs +++ b/DysonNetwork.Drive/Storage/FileController.cs @@ -1,4 +1,3 @@ -using DysonNetwork.Drive.Billing; using DysonNetwork.Shared.Auth; using DysonNetwork.Shared.Models; using DysonNetwork.Shared.Proto; @@ -14,7 +13,6 @@ namespace DysonNetwork.Drive.Storage; public class FileController( AppDatabase db, FileService fs, - QuotaService qs, IConfiguration configuration, IWebHostEnvironment env, FileReferenceService fileReferenceService diff --git a/DysonNetwork.Pass/Auth/AuthService.cs b/DysonNetwork.Pass/Auth/AuthService.cs index 02bb3803..b5dd87fa 100644 --- a/DysonNetwork.Pass/Auth/AuthService.cs +++ b/DysonNetwork.Pass/Auth/AuthService.cs @@ -2,6 +2,7 @@ using System.Security.Cryptography; using System.Text.Json; using System.Text.Json.Serialization; using DysonNetwork.Shared.Cache; +using DysonNetwork.Shared.Data; using DysonNetwork.Shared.Models; using Microsoft.EntityFrameworkCore; using NodaTime;