Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
15 lines
311 B
Python
15 lines
311 B
Python
"""
|
|
Register models
|
|
"""
|
|
|
|
from modeltranslation.translator import translator
|
|
|
|
from core.http import models
|
|
from core.http.translation import another
|
|
|
|
|
|
translator.register(models.Post, another.PostTranslationOption)
|
|
translator.register(
|
|
models.FrontendTranslation, another.FrontendTranslationOption
|
|
) # noqa
|