Rearrange source to src dir.
[redakcja.git] / apps / apiclient / settings.py
diff --git a/apps/apiclient/settings.py b/apps/apiclient/settings.py
deleted file mode 100755 (executable)
index f1eb34a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-from django.conf import settings
-
-
-WL_CONSUMER_KEY = getattr(settings, 'APICLIENT_WL_CONSUMER_KEY', None)
-WL_CONSUMER_SECRET = getattr(settings, 'APICLIENT_WL_CONSUMER_SECRET', None)
-
-WL_API_URL = getattr(settings, 'APICLIENT_WL_API_URL', 
-        'http://wolnelektury.pl/api/')
-
-WL_REQUEST_TOKEN_URL = getattr(settings, 'APICLIENT_WL_REQUEST_TOKEN_URL', 
-        WL_API_URL + 'oauth/request_token/')
-WL_ACCESS_TOKEN_URL = getattr(settings, 'APICLIENT_WL_ACCESS_TOKEN_URL', 
-        WL_API_URL + 'oauth/access_token/')
-WL_AUTHORIZE_URL = getattr(settings, 'APICLIENT_WL_AUTHORIZE_URL', 
-        WL_API_URL + 'oauth/authorize/')