From 4ca289f740b76524daf86928170182353a92357a Mon Sep 17 00:00:00 2001 From: Sylvain Le Bon <sylvain@happy-dev.fr> Date: Tue, 12 Mar 2019 18:38:59 +0000 Subject: [PATCH] bugfix: allow rdf_context in Meta --- djangoldp/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/djangoldp/__init__.py b/djangoldp/__init__.py index 13969406..7461cf54 100644 --- a/djangoldp/__init__.py +++ b/djangoldp/__init__.py @@ -1,5 +1,4 @@ from django.db.models import options __version__ = '0.0.0' -options.DEFAULT_NAMES += ( -'rdf_type', 'auto_author', 'view_set', 'container_path', 'permission_classes', 'serializer_fields', 'nested_fields') +options.DEFAULT_NAMES += ('rdf_type', 'rdf_context', 'auto_author', 'view_set', 'container_path', 'permission_classes', 'serializer_fields', 'nested_fields') \ No newline at end of file -- GitLab