Compare commits
No commits in common. "eac13fb2d33a054aa8b9fd348ecb8127ff63005c" and "9f6b892831af6db39b059d2000f438e2516c9af6" have entirely different histories.
eac13fb2d3
...
9f6b892831
@ -5,7 +5,7 @@ namespace NeDvachAPI.Controllers
|
|||||||
{
|
{
|
||||||
[ApiController]
|
[ApiController]
|
||||||
[Route("[controller]")]
|
[Route("[controller]")]
|
||||||
public class ListController : ControllerBase
|
public class HomeController : ControllerBase
|
||||||
{
|
{
|
||||||
[HttpGet(Name = "GetPosts")]
|
[HttpGet(Name = "GetPosts")]
|
||||||
public string Get()
|
public string Get()
|
||||||
@ -13,7 +13,6 @@ namespace NeDvachAPI.Controllers
|
|||||||
Post[] posts = DBchat.DbList();
|
Post[] posts = DBchat.DbList();
|
||||||
string postsJson = JsonSerializer.Serialize(posts);
|
string postsJson = JsonSerializer.Serialize(posts);
|
||||||
return postsJson ;
|
return postsJson ;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,9 +7,10 @@ namespace NeDvachAPI.Controllers
|
|||||||
[Route("[controller]")]
|
[Route("[controller]")]
|
||||||
public class PostToController : ControllerBase
|
public class PostToController : ControllerBase
|
||||||
{
|
{
|
||||||
[HttpPost(Name = "PostPosts")]
|
[HttpGet(Name = "PostPosts")]
|
||||||
public void ReceivePost([FromBody] Post ReceivedPost)
|
public void ReceivePost(string postJson)
|
||||||
{
|
{
|
||||||
|
Post ReceivedPost = JsonSerializer.Deserialize<Post>(postJson);
|
||||||
DBchat.SendPost(ReceivedPost);
|
DBchat.SendPost(ReceivedPost);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,15 +0,0 @@
|
|||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
Reference in New Issue
Block a user