getActionNameForController
function getActionNameForController(controllerName: string, actionName: string, namespace: string = ""): string
Gets an action name that can be used to fire a controller's action without using the controller.
This can be used along with [[createAction]] to create an action.
Parameters
Returns
Examples
const action = createAction(getActionNameForController('myControllerName', 'myActionName'));