File tree Expand file tree Collapse file tree 1 file changed +20
-4
lines changed
Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -44,15 +44,20 @@ brew install --formula asana
4444 ```
45453 . Follow the prompts to paste your token and select your default workspace.
4646
47+ To check the current status of your authentication and the Asana API:
48+ ``` shell
49+ asana auth status
50+ ```
51+
4752## Configuration
4853
4954Set or get your default workspace:
5055
5156``` shell
52- asana config set default-workspace # or the shorter alias
57+ asana config set default-workspace
5358asana config set dw
5459
55- asana config get default-workspace # or the shorter alias
60+ asana config get default-workspace
5661asana config get dw
5762```
5863
@@ -62,15 +67,26 @@ View your tasks:
6267
6368``` shell
6469asana tasks list # List all your tasks
70+ asana tasks list --sort due-desc # Sort tasks by descending due date
6571asana tasks view # Interactive task viewer with details
6672asana tasks update # Interactive task updater
6773```
6874
69- ## Advanced Usage
75+ View the projects in your workspace:
76+ ``` shell
77+ asana projects list # List all the projects
78+ asana projects list -l 25 --sort desc # List with options
79+ ```
80+
81+ View the users in your workspace:
82+ ``` shell
83+ asana users list # List all the users
84+ asana users list -l 25 --sort desc # List with options
85+ ```
7086
87+ For more usage:
7188``` shell
7289asana help # Show all available commands
73- asana workspaces list # List all workspaces
7490```
7591
7692# Contributing
You can’t perform that action at this time.
0 commit comments