~raoul-snyman/openlp/fix-macos-pdf-test

« back to all changes in this revision

Viewing changes to openlp/plugins/images/endpoint.py

  • Committer: Raoul Snyman
  • Date: 2019-02-14 07:04:30 UTC
  • mfrom: (2766.3.118 webengine-migrate)
  • Revision ID: raoul@snyman.info-20190214070430-nxe1vaeaapq3ult5
Migration from WebKit to Webengine. Also introduced reveal.js for slide rendering, new screen setup dialogs and many other changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
###############################################################################
22
22
import logging
23
23
 
24
 
from openlp.core.api.endpoint.pluginhelpers import search, live, service, display_thumbnails
 
24
from openlp.core.api.endpoint.pluginhelpers import display_thumbnails, live, search, service
25
25
from openlp.core.api.http import requires_auth
26
26
from openlp.core.api.http.endpoint import Endpoint
27
27
from openlp.core.api.http.errors import NotFound
28
28
 
 
29
 
29
30
log = logging.getLogger(__name__)
30
31
 
31
32
images_endpoint = Endpoint('images')