From a0509aea4b9f77ce7f54f178857db1157d9dd1b7 Mon Sep 17 00:00:00 2001 From: Argo-Tianyi Date: Fri, 28 Jan 2022 12:24:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20Client=20=E5=B7=A5?= =?UTF-8?q?=E7=A8=8B=E7=BC=96=E8=AF=91=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BootstrapClient.Web.Core/AdminService.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/blazor/client/BootstrapClient.Web.Core/AdminService.cs b/src/blazor/client/BootstrapClient.Web.Core/AdminService.cs index b556e589..bbce0faf 100644 --- a/src/blazor/client/BootstrapClient.Web.Core/AdminService.cs +++ b/src/blazor/client/BootstrapClient.Web.Core/AdminService.cs @@ -56,4 +56,18 @@ public class AdminService : IBootstrapAdminService } return Task.FromResult(ret); } + + /// + /// + /// + /// + /// + /// + /// + /// + public bool AuhorizingBlock(string userName, string url, string blockName) + { + // Client 暂时未使用 + return true; + } }