Asana

Asana

To import projects from Asana:

1. Create an Asana Connect client and secret. The redirect URL must be set to https://taiga.example.com/project/new/import/asana

2. Edit the backend config at /app/data/customlocal.py to contain the key:
IMPORTERS["asana"] = {
    "active": True, # Enable or disable the importer
    "callback_url": "{}://{}/project/new/import/asana".format(SITES["front"]["scheme"],
                                                              SITES["front"]["domain"]),
    "app_id": "client id from above",
    "app_secret": "client secret from above"
}

3. Edit /app/data/conf.json:
  "importers": [
    "asana"
  ]

4. Restart the app