Skip to content

Commit

Permalink
Remove temp_file from afs, arches#9749 (#1361)
Browse files Browse the repository at this point in the history
  • Loading branch information
njkim authored Oct 24, 2023
1 parent 7d8da5b commit 746df33
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 53 deletions.
3 changes: 0 additions & 3 deletions arches_for_science/urls.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from django.conf import settings
from django.urls import include, path, re_path
from django.conf.urls.static import static
from arches_for_science.views.temp_file import TempFileView
from arches_for_science.views.renderer_config import RendererConfigView, RendererView
from arches.app.views.plugin import PluginView
from arches_for_science.views.workflows.upload_dataset.format_render_map import FormatRenderMap
Expand Down Expand Up @@ -64,8 +63,6 @@
re_path(r"^renderer/(?P<renderer_id>[^\/]+)", RendererView.as_view(), name="renderer_config"),
re_path(r"^renderer_config/(?P<renderer_config_id>[^\/]+)", RendererConfigView.as_view(), name="renderer_config"),
re_path(r"^renderer_config/", RendererConfigView.as_view(), name="renderer_config"),
re_path(r"^temp_file/(?P<file_id>[^\/]+)", TempFileView.as_view(), name="temp_file"),
re_path(r"^temp_file$", TempFileView.as_view(), name="temp_file"),
path("reports/", include("arches_templating.urls")),
path("", include("arches.urls")),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
50 changes: 0 additions & 50 deletions arches_for_science/views/temp_file.py

This file was deleted.

0 comments on commit 746df33

Please sign in to comment.