getActionType is used internally to translate namespaced strings to action constants. See actions for more information on action types.

fluxapp.getActionType('user.login'); // USER_LOGIN
fluxapp.getActionType('user.login:after'); // USER_LOGIN_AFTER

For more information see Action Types

👍

On to registerActions(namespace, handlers)