~sil/rnr-server/clickreview-api-more-parameters

« back to all changes in this revision

Viewing changes to src/core/api/auth/__init__.py

[r=ricardokirkner] Move `reviewsapp.auth` logic into `core.api.auth`

Split auth logic so that it is re-usable by other auth mechanisms.
Incidentally, this also makes a good deal moving forward to the
separation of `reviewsapp` and `clickreviews`.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from core.api.auth.sso import SSOOAuthAuthentication
 
2
 
 
3
 
 
4
__all__ = [
 
5
    'SSOOAuthAuthentication',
 
6
]