Migration updates
Squash version page migrations. Add manual OCR and parsing migrations. Fix tests. Page search updates. Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
@@ -7,7 +7,9 @@ from .views import (
|
||||
DocumentContentView, DocumentContentDeleteView,
|
||||
DocumentContentDownloadView, DocumentPageContentView,
|
||||
DocumentParsingErrorsListView, DocumentSubmitView,
|
||||
DocumentTypeSettingsEditView, DocumentTypeSubmitView, ParseErrorListView
|
||||
DocumentTypeSettingsEditView, DocumentTypeSubmitView,
|
||||
DocumentVersionPageContentView,
|
||||
ParseErrorListView
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
@@ -34,6 +36,11 @@ urlpatterns = [
|
||||
regex=r'^documents/pages/(?P<pk>\d+)/content/$',
|
||||
view=DocumentPageContentView.as_view(), name='document_page_content'
|
||||
),
|
||||
url(
|
||||
regex=r'^documents/versions/pages/(?P<pk>\d+)/content/$',
|
||||
view=DocumentVersionPageContentView.as_view(),
|
||||
name='document_version_page_content'
|
||||
),
|
||||
url(
|
||||
regex=r'^documents/(?P<pk>\d+)/submit/$',
|
||||
view=DocumentSubmitView.as_view(), name='document_submit'
|
||||
|
||||
Reference in New Issue
Block a user