added cors and added produces json.

This commit is contained in:
David Lebee
2021-02-07 00:12:41 -05:00
parent 5df2fa99ce
commit cf2450f5f7
3 changed files with 6 additions and 0 deletions
@@ -7,6 +7,7 @@ using System.Threading.Tasks;
namespace PoweredSoft.CQRS.AspNetCore.Mvc
{
[Produces("application/json")]
[ApiController, Route("api/command/[controller]")]
public class CommandController<TCommand> : Controller
where TCommand : class
@@ -23,6 +24,7 @@ namespace PoweredSoft.CQRS.AspNetCore.Mvc
}
}
[Produces("application/json")]
[ApiController, Route("api/command/[controller]")]
public class CommandController<TCommand, TTCommandResult> : Controller
where TCommand : class
@@ -7,6 +7,7 @@ using System.Threading.Tasks;
namespace PoweredSoft.CQRS.AspNetCore.Mvc
{
[Produces("application/json")]
[ApiController, Route("api/query/[controller]")]
public class QueryController<TQuery, TQueryResult> : Controller
where TQuery : class