diff --git a/api/helpers.py b/api/helpers.py index e3e50d5..6584c5a 100644 --- a/api/helpers.py +++ b/api/helpers.py @@ -59,3 +59,6 @@ class UserSlugCheckHelper(Helper): return Response(status=HTTP_204_NO_CONTENT) except UserProfile.DoesNotExist: return Response(status=HTTP_200_OK) + +class RadioHelper(Helper): + def get(self, request): diff --git a/api/urls.py b/api/urls.py index a876301..5a47a57 100755 --- a/api/urls.py +++ b/api/urls.py @@ -64,6 +64,7 @@ urlpatterns = patterns( url(r'^_act/play', helpers.ActivityPlayHelper.as_view()), url(r'^_chat/', helpers.ChatHelper.as_view()), + url(r('^_radio'), helpers.RadioHelper.as_view()) url(r'^__debug/', DebugView.as_view()), diff --git a/core/jingles/220.mp3 b/core/jingles/220.mp3 new file mode 100644 index 0000000..286d29a Binary files /dev/null and b/core/jingles/220.mp3 differ diff --git a/core/jingles/360.mp3 b/core/jingles/360.mp3 new file mode 100644 index 0000000..efd28c3 Binary files /dev/null and b/core/jingles/360.mp3 differ diff --git a/core/jingles/440.mp3 b/core/jingles/440.mp3 new file mode 100644 index 0000000..6b643c2 Binary files /dev/null and b/core/jingles/440.mp3 differ