Skip to content
Snippets Groups Projects
Commit 69d04b8c authored by Rob Atkinson's avatar Rob Atkinson
Browse files

Merge branch 'master' of https://git.happy-dev.fr/startinblox/djangoldp into roba-bugfixing

parents c9f62d00 fa2e2458
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2018-10-04 11:48
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('djangoldp', '0002_auto_20180913_1800'),
]
operations = [
migrations.AlterModelOptions(
name='ldnotification',
options={'permissions': (('view_todo', 'Read'), ('control_todo', 'Control'))},
),
]
......@@ -87,7 +87,7 @@ class LDPSerializer(HyperlinkedModelSerializer):
data = super().to_representation(obj)
if hasattr(obj._meta, 'rdf_type'):
data['@type'] = obj._meta.rdf_type
data['permissions'] = [{'mode': name.split('_')[0]} for name in get_perms(self.context['request'].user, obj)]
data['permissions'] = [{'mode': {'@type': name.split('_')[0]}} for name in get_perms(self.context['request'].user, obj)]
return data
def build_nested_field(self, field_name, relation_info, nested_depth):
......
......@@ -179,7 +179,7 @@ class LDPNestedViewSet(LDPViewSet):
related_field = related_field,
parent_lookup_field = cls.get_lookup_arg(**kwargs),
model_prefix = cls.get_model(**kwargs)._meta.object_name.lower(),
permission_classes = kwargs.get('permission_classes'),
permission_classes = kwargs.get('permission_classes', ()),
lookup_url_kwarg = related_field.related_model._meta.object_name.lower()+'_id')
class LDPSourceViewSet(LDPViewSet):
......
......@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='djangoldp',
version='0.5a4',
version='0.5a5',
url='https://git.happy-dev.fr/happy-dev/djangoldp/',
author="Startin'blox",
author_email='sylvain@happy-dev.fr',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment