Switch to unified view
a/Allura/allura/model/oauth.py | b/Allura/allura/model/oauth.py | ||
---|---|---|---|
1 | import logging |
1 | import logging |
2 | 2 | ||
3 | import oauth2 as oauth |
3 | import oauth2 as oauth |
4 | from pylons import c, g |
4 | from pylons import tmpl_context as c, app_globals as g |
5 | 5 | ||
6 | from ming import schema as S |
6 | from ming import schema as S |
7 | from ming.orm import FieldProperty, RelationProperty, ForeignIdProperty |
7 | from ming.orm import FieldProperty, RelationProperty, ForeignIdProperty |
8 | from ming.orm.declarative import MappedClass |
8 | from ming.orm.declarative import MappedClass |
9 | 9 |