Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-01-11 23:13:15 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-01-11 23:13:15 +0300
commitb4217b9404a4f0c6441be407f326586a8b3a120d (patch)
tree1af48e2f251a1c8e145e18676c065680d93f2afa
parentc76a17bd40b8fe5520ee6a66214e9b5b2cc4df14 (diff)
Add note on Asana tokens to 8.3 update guide
[ci skip]
-rw-r--r--doc/update/8.2-to-8.3.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/update/8.2-to-8.3.md b/doc/update/8.2-to-8.3.md
index 9ecff039887..b889f445a64 100644
--- a/doc/update/8.2-to-8.3.md
+++ b/doc/update/8.2-to-8.3.md
@@ -179,6 +179,21 @@ To make sure you didn't miss anything run a more thorough check:
If all items are green, then congratulations, the upgrade is complete!
+### 11. Update Asana Tokens
+
+[Asana API Keys have been deprecated](https://asana.com/developers/feed/api-key-deprecation)
+in favor of Personal Access Tokens and OAuth. You can create a personal access
+token for GitLab on [the Apps tab of your profile settings](https://app.asana.com/-/account_api).
+
+Once you have a token, you can update all projects via the console:
+
+```ruby
+AsanaService.all.each { |s| s.api_key = '[PERSONAL_ACCESS_TOKEN]'; s.save }
+```
+
+See [#2111](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2111) for
+more details on this change.
+
## Things went south? Revert to previous version (8.2)
### 1. Revert the code to the previous version