mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
@@ -39,6 +39,9 @@ from libraries.api import LibrarySearchView
|
||||
from libraries.views import (
|
||||
LibraryDetail,
|
||||
LibraryListDispatcher,
|
||||
CommitAuthorEmailCreateView,
|
||||
VerifyCommitEmailView,
|
||||
CommitEmailResendView,
|
||||
)
|
||||
from news.feeds import AtomNewsFeed, RSSNewsFeed
|
||||
from news.views import (
|
||||
@@ -231,6 +234,21 @@ urlpatterns = (
|
||||
LibraryDetail.as_view(),
|
||||
name="library-detail",
|
||||
),
|
||||
path(
|
||||
"libraries/commit_author_email_create/",
|
||||
CommitAuthorEmailCreateView.as_view(),
|
||||
name="commit-author-email-create",
|
||||
),
|
||||
path(
|
||||
"libraries/commit_author_email_verify/<str:token>/",
|
||||
VerifyCommitEmailView.as_view(),
|
||||
name="commit-author-email-verify",
|
||||
),
|
||||
path(
|
||||
"libraries/resend_author_email_verify/<uuid:claim_hash>/",
|
||||
CommitEmailResendView.as_view(),
|
||||
name="commit-author-email-verify-resend",
|
||||
),
|
||||
# Redirect for '/libs/' legacy boost.org urls.
|
||||
re_path(
|
||||
r"^libs/(?P<library_slug>[-\w]+)/?$",
|
||||
|
||||
Reference in New Issue
Block a user