datatable .net
datatable .net
j.teodoro
Posts: 1Questions: 1Answers: 0
Hello all!
I was testing the "beta version" and I would like to know how can I implement permissions in the controller.
[Route("api/SGDMRede")]
[HttpGet]
[HttpPost]
public IHttpActionResult Rede([FromBody] FormDataCollection formData)
{
//do something.
}
This discussion has been closed.
Answers
I assume you are referring to the Editor extension (which is now out of beta)? Permissions is not something that Editor itself will implement for you - it simply provides the operations for CRUD actions. If permission management is something you need you would need to create the code for it using whatever session information you have available (assuming you are using session information).
Allan