puchar/tinymce/urls.py

13 lines
475 B
Python
Raw Permalink Normal View History

2022-12-05 04:12:09 +01:00
# Copyright (c) 2008 Joost Cassee
# Licensed under the terms of the MIT License (see LICENSE.txt)
from django.urls import path
from tinymce import views
urlpatterns = [
path("spellchecker/", views.spell_check, name="tinymce-spellcheck"),
path("flatpages_link_list/", views.flatpages_link_list, name="tinymce-linklist"),
path("compressor/", views.compressor, name="tinymce-compressor"),
path("filebrowser/", views.filebrowser, name="tinymce-filebrowser"),
]