You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds description of granting access via lua_call (#5148)
* With the ```lua_call``` priviledge any user can be given access to non-persistent functions
* The function may be defined after the priviledge is given
* Fixes#3628
Granting the 'execute' privilege on ``lua_call`` permits the user to call any global (accessible via the ``_G`` Lua table)
806
+
user-defined Lua function with the ``IPROTO_CALL`` request. To grant permission to any non-persistent function, you need to
807
+
specify its name when granting the ``lua_call`` privilege.
808
+
809
+
.. NOTE::
810
+
811
+
The function doesn't need to be defined at the time privileges are granted, meaning that the access to the function will be provided for the user once this function is defined.
0 commit comments