fix: 修复 Client 工程编译报错问题

This commit is contained in:
Argo-Tianyi 2022-01-28 12:24:49 +08:00 committed by zhangpeihang
parent 955f65a7aa
commit a0509aea4b
1 changed files with 14 additions and 0 deletions

View File

@ -56,4 +56,18 @@ public class AdminService : IBootstrapAdminService
}
return Task.FromResult(ret);
}
/// <summary>
///
/// </summary>
/// <param name="userName"></param>
/// <param name="url"></param>
/// <param name="blockName"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public bool AuhorizingBlock(string userName, string url, string blockName)
{
// Client 暂时未使用
return true;
}
}