mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-12-25 12:52:30 -05:00
Fix: Add regex denoter and improve celerybeat gitignore (#1446)
* (bugfix): Added celerybeat extras to gitignore * (bugfix): fixed missing regex denoter * Fix .dockerignore node_modules pattern and add comprehensive exclusions - Fix #1398: Change 'node_modules' to '**/node_modules' to exclude all nested directories - Add patterns for Python bytecode, IDE files, logs, and build artifacts - Consolidate node_modules patterns in .gitignore to use **/node_modules/
This commit is contained in:
@@ -111,7 +111,7 @@ urlpatterns = [
|
||||
re_path(r"^manage/users$", views.manage_users, name="manage_users"),
|
||||
# Media uploads in ADMIN created pages
|
||||
re_path(r"^tinymce/upload/", tinymce_handlers.upload_image, name="tinymce_upload_image"),
|
||||
re_path("^(?P<slug>[\w.-]*)$", views.get_page, name="get_page"), # noqa: W605
|
||||
re_path(r"^(?P<slug>[\w.-]*)$", views.get_page, name="get_page"), # noqa: W605
|
||||
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user