Labels
Labels are a new way to categorize tasks inside a project. They are shown in the /task info
command, /document info
command or in the app.
Auto Labeling
With auto labeling you can have labels automatically assigned to tasks and documents when they are created.
How it works
Create labels in your server.
Check if “auto labeling” is enabled in your server settings (/settings auto_labeling
or in the app server settings “General”).
Create a new task
Check if a label was applied via /task info
or in the app.
When a new task or document is created and there a labels created in the server, the task title, description and all labels will be sent to an AI that will determine the label that fits best.
Commands
/label create
name
My label
color
red
Creates a new label with the given name and color.
Command Options
Required | Name | Description |
---|---|---|
Yes | name | The name of the label. |
No | color | The color of the label, if any. |
Required permission: MANAGE_LABELS
/label delete
name
My label
Deletes a label with the given name.
Command Options
Required | Name | Description |
---|---|---|
Yes | name | The name of an existing label. |
Required permission: MANAGE_LABELS
/label list
Lists all labels.
/label add
object_id
13
name
My label
Adds a label with the given name to the object (task or document) with the given ID.
Command Options
Required | Name | Description |
---|---|---|
Yes | object_id | The id of the object (task or document) to add the label to. |
Yes | name | The name of the label to add. |
/label remove
object_id
13
name
My label
Removes a label with the given name from the object (task or document) with the given ID.
Command Options
Required | Name | Description |
---|---|---|
Yes | object_id | The id of the object (task or document) to remove the label from. |
Yes | name | The name of the label to remove. |
/label edit
name
My label
new_name
New label
color
blue
Removes a label with the given name from the object (task or document) with the given ID.
Command Options
Required | Name | Description |
---|---|---|
Yes | name | The name of the label to edit. |
Yes | new_name | The new name of the label. |
No | color | The new color of the label, if any. |