mirror of https://github.com/abpframework/abp.git
3 changed files with 83 additions and 7 deletions
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Threading.Tasks; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Volo.Abp.AspNetCore.Mvc; |
|||
using Volo.Abp.Json; |
|||
|
|||
namespace IdentityService.Host |
|||
{ |
|||
public class TestController : AbpController |
|||
{ |
|||
private readonly IJsonSerializer _jsonSerializer; |
|||
|
|||
public TestController(IJsonSerializer jsonSerializer) |
|||
{ |
|||
_jsonSerializer = jsonSerializer; |
|||
} |
|||
|
|||
[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 |
|||
); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue