Skip to content

Commit

Permalink
Merge pull request #181 from praekeltfoundation/add-yal
Browse files Browse the repository at this point in the history
Add all yal things
  • Loading branch information
erikh360 authored May 7, 2024
2 parents 42c4830 + 4e1582d commit 8a3315d
Show file tree
Hide file tree
Showing 14 changed files with 760 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"rp_transferto",
"rp_recruit",
"rp_interceptors",
"rp_yal",
"randomisation",
]

Expand Down
1 change: 1 addition & 0 deletions config/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
path("interceptor/", include("rp_interceptors.urls")),
path("dtone/", include("rp_dtone.urls")),
path("randomisation/", include("randomisation.urls")),
path("yal/", include("rp_yal.urls"), name="rp_yal"),
]
Empty file added rp_yal/__init__.py
Empty file.
6 changes: 6 additions & 0 deletions rp_yal/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class RpYalConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "rp_yal"
5 changes: 5 additions & 0 deletions rp_yal/serializers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from rest_framework import serializers


class GetOrderedContentSetSerializer(serializers.Serializer):
fields = serializers.DictField()
Empty file added rp_yal/tests/__init__.py
Empty file.
Loading

0 comments on commit 8a3315d

Please sign in to comment.