Auth DB schema migration, ef design, auth
This commit is contained in:
parent
a0d5df1c52
commit
5e4bfaa95e
22 changed files with 1106 additions and 38 deletions
18
src/Interlinked.User/Controllers/SystemController.cs
Normal file
18
src/Interlinked.User/Controllers/SystemController.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Interlinked.User.Controllers;
|
||||
|
||||
[ApiController]
|
||||
[Route("api/")]
|
||||
public class SystemController : ControllerBase
|
||||
{
|
||||
[HttpGet("version")]
|
||||
public async Task<IActionResult> Version()
|
||||
{
|
||||
return Ok("1.0E");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue