Get rids of the APIEndPoint and APIResource classes. Register API url using the 'has_rest_api' AppConfig variable.

Signed-off-by: Michael Price <loneviking72@gmail.com>
This commit is contained in:
Michael Price
2018-03-04 04:21:29 -04:00
committed by Roberto Rosario
parent 36d19ea284
commit e1956f8d80
26 changed files with 39 additions and 197 deletions

View File

@@ -20,7 +20,6 @@ from documents.signals import post_version_upload
from documents.widgets import document_link
from mayan.celery import app
from navigation import SourceColumn
from rest_api.classes import APIEndPoint
from .events import event_parsing_document_version_submit
from .handlers import handler_parse_document_version
@@ -56,6 +55,7 @@ def document_version_parsing_submit(self):
class DocumentParsingApp(MayanAppConfig):
has_rest_api = True
has_tests = True
name = 'document_parsing'
verbose_name = _('Document parsing')
@@ -63,8 +63,6 @@ class DocumentParsingApp(MayanAppConfig):
def ready(self):
super(DocumentParsingApp, self).ready()
APIEndPoint(app=self, version_string='1')
Document = apps.get_model(
app_label='documents', model_name='Document'
)