diff --git a/spa/social.py b/spa/social.py index 7b6a177..dda3031 100644 --- a/spa/social.py +++ b/spa/social.py @@ -13,6 +13,9 @@ from allauth.socialaccount.models import SocialToken import logging logger = logging.getLogger(__name__) +""" + Handles callbacks from facebook and twitter +""" class SocialHandler(object): def __init__(self, api_name="v1"): diff --git a/spa/urls.py b/spa/urls.py index 0965c1b..6ba0ae5 100644 --- a/spa/urls.py +++ b/spa/urls.py @@ -20,6 +20,7 @@ v1_api.register(ReleaseAudioResource()) v1_api.register(EventResource()) v1_api.register(UserResource()) v1_api.register(ActivityResource()) + ajax = AjaxHandler() audio = AudioHandler() social = SocialHandler() diff --git a/templates/views/LoginView.html b/templates/views/LoginView.html index 7bd6896..dc3b7c0 100644 --- a/templates/views/LoginView.html +++ b/templates/views/LoginView.html @@ -19,8 +19,8 @@
- Please note that using your twitter/facebook account
- to login does not give us access to your private information + Please note that using a social account
+ does not give us access to your private information
\ No newline at end of file diff --git a/templates/views/MixListView.html b/templates/views/MixListView.html index 1c368bf..f8af230 100644 --- a/templates/views/MixListView.html +++ b/templates/views/MixListView.html @@ -9,4 +9,5 @@ {% endif %}
  • Upload
  • +
    \ No newline at end of file