cb.onStart(func)

Receive a notification when an app has started. The func argument should be a function that receives 1 argument itself, user.

Example Usage

cb.onStart(user => {
    cb.sendNotice(user['user'] + ' started an app!');
});

Example Output

Notice: testuser started an app!