734b2c91f9
1. 将Hua.Cli.Tests、项目共享库、模块项目等所有项目的TargetFramework从net8.0/net9.0升级到net10.0 2. 完善dotnet-tools.json、模板配置文件,添加必要的构建和发布配置 3. 新增微服务、网关、应用程序的启动脚本和基础配置文件 4. 补充产品管理模块的领域、应用、Web层基础代码和多语言资源
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Volo.Abp.AspNetCore.Mvc;
|
|
using Volo.Abp.Authorization.Permissions;
|
|
using Volo.Abp.Json;
|
|
|
|
namespace Company.Project.BackendAdminApp.Controllers;
|
|
|
|
public class TestController : AbpController
|
|
{
|
|
private readonly IJsonSerializer _jsonSerializer;
|
|
private readonly IPermissionChecker _permissionChecker;
|
|
|
|
public TestController(IJsonSerializer jsonSerializer, IPermissionChecker permissionChecker)
|
|
{
|
|
_jsonSerializer = jsonSerializer;
|
|
_permissionChecker = permissionChecker;
|
|
}
|
|
|
|
[HttpGet]
|
|
public async Task<ActionResult> Index()
|
|
{
|
|
var newLine = Environment.NewLine + Environment.NewLine;
|
|
|
|
return Content(
|
|
"Claims: " + User.Claims.Select(c => $"{c.Type} = {c.Value}").JoinAsString(" | ") + newLine +
|
|
"CurrentUser: " + _jsonSerializer.Serialize(CurrentUser) + newLine +
|
|
"access_token: " + await HttpContext.GetTokenAsync("access_token") + newLine +
|
|
"isGranted: AbpIdentity.Users: " + await _permissionChecker.IsGrantedAsync("AbpIdentity.Users")
|
|
);
|
|
}
|
|
}
|