The new API uses Django REST Framework. For now, it is designed specifically to support the use cases required by the forum digest notifier (not yet built), with a goal of making it more generally useful over time.
11 lines
231 B
Python
11 lines
231 B
Python
from factory import DjangoModelFactory
|
|
from user_api.models import UserPreference
|
|
|
|
|
|
class UserPreferenceFactory(DjangoModelFactory):
|
|
FACTORY_FOR = UserPreference
|
|
|
|
user = None
|
|
key = None
|
|
value = "default test value"
|