Remove references to source_url

This commit is contained in:
Mouse Reeve 2020-05-03 18:58:12 -07:00
parent 3a4a194160
commit b8568a76c8
3 changed files with 2 additions and 5 deletions

View file

@ -17,8 +17,6 @@ def get_book(book):
'physical_format',
'misc_identifiers',
'source_url',
'description',
'languages',
'series',

View file

@ -61,8 +61,8 @@ class Connector(AbstractConnector):
}
book = update_from_mappings(book, data, mappings)
if not book.source_url:
book.source_url = response.url
if not book.remote_id:
book.remote_id = response.url
if not book.connector:
book.connector = self.connector
book.save()

View file

@ -109,7 +109,6 @@ class EditionForm(ModelForm):
'subjects',# TODO
'subject_places',# TODO
'source_url',
'connector',
]