Separate out local and remote search results

This commit is contained in:
Mouse Reeve
2020-05-03 12:59:06 -07:00
parent d8934879e9
commit 7fb0a87077
8 changed files with 102 additions and 41 deletions

View File

@ -13,8 +13,10 @@ User.objects.get(id=1).followers.add(User.objects.get(id=2))
Connector.objects.create(
identifier='openlibrary.org',
name='OpenLibrary',
connector_file='openlibrary',
base_url='https://openlibrary.org',
books_url='https://openlibrary.org',
covers_url='https://covers.openlibrary.org',
search_url='https://openlibrary.org/search?q=',
key_name='openlibrary_key',
@ -22,11 +24,15 @@ Connector.objects.create(
Connector.objects.create(
identifier=DOMAIN,
name='Local',
self=True,
connector_file='self_connector',
base_url='https://%s/book' % DOMAIN,
base_url='https://%s' % DOMAIN,
books_url='https://%s/book' % DOMAIN,
covers_url='https://%s/images/covers' % DOMAIN,
search_url='https://%s/search?q=' % DOMAIN,
key_name='openlibrary_key',
priority=1,
)