assign-user
Description
Fires when a user is assigned to a task
Usage
"assign-user": ({
id: string | number,
userId: string | number
}) => void;
Parameters
The callback of the assign-user event can take an object with the following parameters:
id
- (required) the id of a taskuserId
- (required) the id of the user assigned to the task
info
To handle the inner events, you can use the Event Bus methods
Example
const { ToDo, Toolbar } = todo;
const {tasks, projects, users} = getData();
const list = new ToDo("#root", {
tasks,
projects,
users
});
const toolbar = new Toolbar("#toolbar", {
api: list.api,
});
// subscribe to the "assign-user" event
list.api.on("assign-user", ({id, userId}) => {
console.log("The", userId, "user is assigned to the", id, "task");
});
Related article: Task users