X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3193141f55df20910cf8ba35f9e669d79c90d3f4..5dade46d5e6a2f767f33009ffd616fdae94f3c0a:/apps/api/resources.py diff --git a/apps/api/resources.py b/apps/api/resources.py index a124a2fa..fbdb89b8 100644 --- a/apps/api/resources.py +++ b/apps/api/resources.py @@ -14,13 +14,16 @@ authdata = {'authentication': DjangoAuth()} # import api.handlers.library_handlers as dh +from api.handlers.text_handler import DocumentTextHandler + library_resource = Resource(dh.LibraryHandler, **authdata) document_resource = Resource(dh.DocumentHandler, **authdata) -document_text_resource = Resource(dh.DocumentTextHandler, **authdata) +document_text_resource = Resource(DocumentTextHandler, **authdata) document_html_resource = Resource(dh.DocumentHTMLHandler, **authdata) # document_dc_resource = Resource(dh.DocumentDublinCoreHandler, **authdata) document_gallery = Resource(dh.DocumentGalleryHandler, **authdata) document_merge = Resource(dh.MergeHandler, **authdata) +diff_resource = Resource(dh.DiffHandler, **authdata) import api.handlers.manage_handlers as mh @@ -48,4 +51,5 @@ __all__ = [ 'scriptlets', 'pullrequest_collection', 'pullrequest_rsrc', + 'diff_resource', ] \ No newline at end of file