* fix: remove help/personal-information and the prompt-for-consent email management command. * fix: remove gdpr treatment except for consent checkbox. Rename Submit. * fix: drom the consent column from Person and Person.History * fix: remove the consent boolean. Reorganize the account info form. * chore: reorder migrations
12 lines
302 B
Python
12 lines
302 B
Python
# Copyright The IETF Trust 2013-2022, All Rights Reserved
|
|
|
|
from ietf.help import views
|
|
from ietf.utils.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^state/(?P<doc>[-\w]+)/(?P<type>[-\w]+)/?$', views.state),
|
|
url(r'^state/(?P<doc>[-\w]+)/?$', views.state),
|
|
url(r'^state/?$', views.state_index),
|
|
]
|
|
|