Skip to content

Commit

Permalink
Merge pull request #185 from apiology/update-from-cookiecutter-2023-0…
Browse files Browse the repository at this point in the history
…3-25-0837

Update from cookiecutter
  • Loading branch information
apiology authored Mar 25, 2023
2 parents 258ac52 + a6447ee commit 24cef26
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Related backlog tasks:
First, run these commands:
```sh
git stash && git checkout main && git pull
git stash && git checkout main && git pull && make
last_released_version=$(npm version --json | jq -r '."alfred-upvoter-for-asana"')
git log v${last_released_version:?}..
update_type= # patch/minor/major
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repl: ## Bring up an interactive JavaScript prompt
@echo "const asana = require('asana');"
@echo "const clientOptions = {"
@echo " defaultHeaders: {"
@echo " 'Asana-Enable': 'new_user_task_lists,new_project_templates,new_memberships',"
@echo " 'Asana-Enable': 'new_user_task_lists,new_project_templates,new_memberships,new_goal_memberships',"
@echo " },"
@echo "};"
@echo "const asanaAccessToken = process.env.ASANA_API_TOKEN;"
Expand Down
2 changes: 1 addition & 1 deletion src/asana-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const fetchClient = async () => {

const clientOptions: Asana.ClientOptions = {
defaultHeaders: {
'Asana-Enable': 'new_user_task_lists,new_project_templates,new_memberships,new_goal_memberships,new_goal_memberships',
'Asana-Enable': 'new_user_task_lists,new_project_templates,new_memberships,new_goal_memberships',
},
};
fetchedClient = Asana.Client.create(clientOptions).useAccessToken(asanaAccessToken);
Expand Down

0 comments on commit 24cef26

Please sign in to comment.