event log UI improvements
This commit is contained in:
@ -37,6 +37,13 @@ namespace Oqtane.Controllers
|
||||
return PageModules.GetPageModule(id);
|
||||
}
|
||||
|
||||
// GET: api/<controller>/pageid/moduleid
|
||||
[HttpGet("{pageid}/{moduleid}")]
|
||||
public PageModule Get(int pageid, int moduleid)
|
||||
{
|
||||
return PageModules.GetPageModule(pageid, moduleid);
|
||||
}
|
||||
|
||||
// POST api/<controller>
|
||||
[HttpPost]
|
||||
[Authorize(Roles = Constants.AdminRole)]
|
||||
|
Reference in New Issue
Block a user