Mercurial > wikked
annotate backend.py @ 196:cbf7db1ff0d5
Better authentication handling:
- Not bundling user info with every response anymore.
- Ability to optionally bundle user info with the page read API endpoint.
- New API endpoint for current user info.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 09 Feb 2014 20:46:22 -0800 |
parents | a4a64d6b66cb |
children |
rev | line source |
---|---|
164 | 1 from wikked.tasks import app |
138
df04e6a875ba
Added Celery-powered background updates to wiki pages.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
2 |
df04e6a875ba
Added Celery-powered background updates to wiki pages.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
3 if __name__ == '__main__': |
df04e6a875ba
Added Celery-powered background updates to wiki pages.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
4 app.start() |
df04e6a875ba
Added Celery-powered background updates to wiki pages.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
5 |