using Microsoft.AspNetCore.Mvc; using System.Text.Json; namespace NeDvachAPI.Controllers { [ApiController] [Route("[controller]")] public class ListController : ControllerBase { [HttpGet(Name = "GetPosts")] public string Get() { var remoteIpAddress = request.HttpContext.Connection.RemoteIpAddress; //Post[] posts = DBchat.DbList(); List posts = DBchat.DbList(); string postsJson = JsonSerializer.Serialize(posts); Console.WriteLine($"Запрошен список постов для {remoteIpAddress}"); return postsJson ; } } }