This commit is contained in:
rolux 2011-11-11 13:21:09 +00:00
commit 3152ea2e20
2 changed files with 3 additions and 1 deletions

View file

@ -1162,6 +1162,7 @@ attrs = {
'duration': models.FloatField(null=True, blank=True, db_index=True),
'width': models.BigIntegerField(null=True, blank=True, db_index=True),
'height': models.BigIntegerField(null=True, blank=True, db_index=True),
'created': models.DateTimeField(null=True, blank=True, db_index=True),
}
for key in filter(lambda k: 'columnWidth' in k or k['type'] in ('integer', 'time', 'float', 'date', 'enum'), settings.CONFIG['itemKeys']):
name = key['id']

View file

@ -696,7 +696,8 @@ def setUI(request):
access, created = Access.objects.get_or_create(item=item, user=request.user)
else:
access, created = Access.objects.get_or_create(item=item, user=None)
access.save()
if not created:
access.save()
response = json_response()
return render_to_json_response(response)