mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix LogEntry user when PAPERLESS_DISABLE_LOGIN is set to true
This commit is contained in:
parent
b733b32c1d
commit
3aafabba26
25
src/documents/migrations/0019_add_consumer_user.py
Normal file
25
src/documents/migrations/0019_add_consumer_user.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.5 on 2017-07-15 17:12
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.contrib.auth.models import User
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
def forwards_func(apps, schema_editor):
|
||||||
|
User.objects.create(username="consumer")
|
||||||
|
|
||||||
|
|
||||||
|
def reverse_func(apps, schema_editor):
|
||||||
|
User.objects.get(username="consumer").delete()
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('documents', '0018_auto_20170715_1712'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RunPython(forwards_func, reverse_func),
|
||||||
|
]
|
@ -102,7 +102,7 @@ def cleanup_document_deletion(sender, instance, using, **kwargs):
|
|||||||
def set_log_entry(sender, document=None, logging_group=None, **kwargs):
|
def set_log_entry(sender, document=None, logging_group=None, **kwargs):
|
||||||
|
|
||||||
ct = ContentType.objects.get(model="document")
|
ct = ContentType.objects.get(model="document")
|
||||||
user = User.objects.first()
|
user = User.objects.get(username="consumer")
|
||||||
|
|
||||||
LogEntry.objects.create(
|
LogEntry.objects.create(
|
||||||
action_flag=ADDITION,
|
action_flag=ADDITION,
|
||||||
|
@ -210,7 +210,7 @@ class TestDocumentConsumptionFinishedSignal(TestCase):
|
|||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
TestCase.setUp(self)
|
TestCase.setUp(self)
|
||||||
User.objects.create_user(username='testuser', password='12345')
|
User.objects.create_user(username='test_consumer', password='12345')
|
||||||
self.doc_contains = Document.objects.create(
|
self.doc_contains = Document.objects.create(
|
||||||
content="I contain the keyword.", file_type="pdf")
|
content="I contain the keyword.", file_type="pdf")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user