User module events interface. Users are described in detail in Users article. Module subscription API is described in detail in Subscriptions article.
userEvery24hr (user:UserClass):Void
Event hook. Called for each user every 24 hours if the module is subscribed to it. You can subscribe the module to this event in the constructor like this:
server.subscribeModule("core/user.every24hr", this);
Note: The 24-hour time period is counted from the first call.
Note: This hook will be called on loading user from database if 24 hours have passed.
Parameters:
user
User instance.