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
In "Usage" section of README, 2 cases are described:
To tokenize the password column on updates, add this to your UsersTable:
If instead you wanted to have it create a token both on account creation and credentials update:
But actually tokenization occurs on create in 1st config. implementedEvents config has no effect.
This is because the return value of Behavior::implementedEvents() has Model.afterSave if afterSave() method exists.
Maybe own implementation of TokenizeBehavior::implementedEvents() is needed.
The text was updated successfully, but these errors were encountered:
In "Usage" section of README, 2 cases are described:
UsersTable
:But actually tokenization occurs on create in 1st config.
implementedEvents
config has no effect.This is because the return value of
Behavior::implementedEvents()
hasModel.afterSave
ifafterSave()
method exists.Maybe own implementation of
TokenizeBehavior::implementedEvents()
is needed.The text was updated successfully, but these errors were encountered: