luanpoppe commited on
Commit
df36d7a
Β·
1 Parent(s): 133d931

feat: adicionando o app de pdf na pasta de _antigos

Browse files
{pdfs β†’ _antigos/pdfs}/__init__.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/admin.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/apps.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/migrations/0001_initial.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/migrations/0002_delete_endpointtestemodel.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/migrations/__init__.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/models.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/serializer.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/tests.py RENAMED
File without changes
{pdfs β†’ _antigos/pdfs}/views.py RENAMED
File without changes
setup/installed_apps.py CHANGED
@@ -9,7 +9,6 @@ config_apps = [
9
  "adrf",
10
  "django_filters",
11
  "corsheaders",
12
- "pdfs",
13
  "drf_spectacular",
14
  ]
15
 
 
9
  "adrf",
10
  "django_filters",
11
  "corsheaders",
 
12
  "drf_spectacular",
13
  ]
14
 
setup/urls.py CHANGED
@@ -5,7 +5,6 @@ from drf_spectacular.views import SpectacularSwaggerView, SpectacularAPIView
5
 
6
 
7
  from gerar_relatorio_modelo_usuario.views import ResumoSimplesCursorCompletoView
8
- from pdfs.views import getPDF
9
  from resumos.views import (
10
  ResumoView,
11
  ResumoSimplesCursorView,
@@ -27,7 +26,6 @@ urlpatterns = [
27
  ),
28
  path("admin/", admin.site.urls),
29
  path("", include(router.urls)),
30
- path("pdf", getPDF, name="upload-pdf"),
31
  path("resumo", ResumoView.as_view(), name="summary-pdf"),
32
  path("resumo/cursor", ResumoSimplesCursorView.as_view(), name="summary-cursor-pdf"),
33
  path(
 
5
 
6
 
7
  from gerar_relatorio_modelo_usuario.views import ResumoSimplesCursorCompletoView
 
8
  from resumos.views import (
9
  ResumoView,
10
  ResumoSimplesCursorView,
 
26
  ),
27
  path("admin/", admin.site.urls),
28
  path("", include(router.urls)),
 
29
  path("resumo", ResumoView.as_view(), name="summary-pdf"),
30
  path("resumo/cursor", ResumoSimplesCursorView.as_view(), name="summary-cursor-pdf"),
31
  path(