Hi,
How would you proceed to change the rights (like unlock, extend,…) on certain pages that are used by our users, I’m thinking of certain Plugins, Custom Maps or Custom Menu ?
Maybe you know how to manage page rights directly in the Librenms SQL database? …While waiting for a release on this subject ?
You can bypass error “403 | This action is unauthorized” by commenting “denied” in the file function /applis/librenms/vendor/laravel/framework/src/Illuminate/Auth/Access/Response.php
public function authorize()
{
if ($this->denied()) {
// throw (new AuthorizationException($this->message(), $this->code()))
// ->setResponse($this)
// ->withStatus($this->status);
}
return $this;
}