mirror of
https://github.com/nikdoof/vapemap.git
synced 2025-12-18 12:19:24 +00:00
New app called "moderation" which handles the reporting, and in the future, management of incorrect records in the database.
6 lines
193 B
Python
6 lines
193 B
Python
from django.conf.urls import patterns, url
|
|
from moderation.views import FlagObjectView
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^flag/$', FlagObjectView.as_view(), name='moderation_flagobject'),
|
|
) |