本文整理汇总了Python中sentry.web.frontend.auth_login.AuthLoginView类的典型用法代码示例。如果您正苦于以下问题:Python AuthLoginView类的具体用法?Python AuthLoginView怎么用?Python AuthLoginView使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AuthLoginView类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: url
url(r'^api/0/', include('sentry.api.urls')),
url(r'^api/hooks/mailgun/inbound/', MailgunInboundWebhookView.as_view(),
name='sentry-mailgun-inbound-hook'),
url(r'^api/hooks/release/(?P<plugin_id>[^/]+)/(?P<project_id>[^/]+)/(?P<signature>[^/]+)/', ReleaseWebhookView.as_view(),
name='sentry-release-hook'),
url(r'^api/embed/error-page/$', ErrorPageEmbedView.as_view(),
name='sentry-error-page-embed'),
# OAuth
url(r'^oauth/authorize/$', OAuthAuthorizeView.as_view()),
url(r'^oauth/token/$', OAuthTokenView.as_view()),
# Auth
url(r'^auth/link/(?P<organization_slug>[^/]+)/$', AuthOrganizationLoginView.as_view(),
name='sentry-auth-link-identity'),
url(r'^auth/login/$', AuthLoginView.as_view(),
name='sentry-login'),
url(r'^auth/login/(?P<organization_slug>[^/]+)/$', AuthOrganizationLoginView.as_view(),
name='sentry-auth-organization'),
url(r'^auth/2fa/$', TwoFactorAuthView.as_view(),
name='sentry-2fa-dialog'),
url(r'^auth/2fa/u2fappid\.json$', u2f_appid,
name='sentry-u2f-app-id'),
url(r'^auth/sso/$', AuthProviderLoginView.as_view(),
name='sentry-auth-sso'),
url(r'^auth/logout/$', AuthLogoutView.as_view(),
name='sentry-logout'),
url(r'^auth/reactivate/$', ReactivateAccountView.as_view(),
name='sentry-reactivate-account'),
url(r'^auth/register/$', AuthLoginView.as_view(),
name='sentry-register'),
开发者ID:sashahilton00,项目名称:sentry,代码行数:31,代码来源:urls.py
示例2: url
# SAML
url(r'^saml/acs/(?P<organization_slug>[^/]+)/$', SAML2AcceptACSView.as_view(),
name='sentry-auth-organization-saml-acs'),
url(r'^saml/sls/(?P<organization_slug>[^/]+)/$', SAML2SLSView.as_view(),
name='sentry-auth-organization-saml-sls'),
url(r'^saml/metadata/(?P<organization_slug>[^/]+)/$', SAML2MetadataView.as_view(),
name='sentry-auth-organization-saml-metadata'),
# Auth
url(
r'^auth/link/(?P<organization_slug>[^/]+)/$',
AuthOrganizationLoginView.as_view(),
name='sentry-auth-link-identity'
),
url(r'^auth/login/$', AuthLoginView.as_view(), name='sentry-login'),
url(
r'^auth/login/(?P<organization_slug>[^/]+)/$',
AuthOrganizationLoginView.as_view(),
name='sentry-auth-organization'
),
url(r'^auth/2fa/$', TwoFactorAuthView.as_view(), name='sentry-2fa-dialog'),
url(r'^auth/2fa/u2fappid\.json$', u2f_appid, name='sentry-u2f-app-id'),
url(r'^auth/sso/$', AuthProviderLoginView.as_view(), name='sentry-auth-sso'),
url(r'^auth/logout/$', AuthLogoutView.as_view(), name='sentry-logout'),
url(r'^auth/reactivate/$', ReactivateAccountView.as_view(),
name='sentry-reactivate-account'),
url(r'^auth/register/$', AuthLoginView.as_view(), name='sentry-register'),
url(r'^auth/close/$', AuthCloseView.as_view(), name='sentry-auth-close'),
# Account
开发者ID:hosmelq,项目名称:sentry,代码行数:30,代码来源:urls.py
示例3: url
url(r'^_static/(?P<module>[^/]+)/(?P<path>.*)$', generic.static_media,
name='sentry-media'),
# API
url(r'^api/0/', include('sentry.api.urls')),
url(r'^api/hooks/mailgun/inbound/', MailgunInboundWebhookView.as_view(),
name='sentry-mailgun-inbound-hook'),
url(r'^api/hooks/release/(?P<plugin_id>[^/]+)/(?P<project_id>[^/]+)/(?P<signature>[^/]+)/', ReleaseWebhookView.as_view(),
name='sentry-release-hook'),
url(r'^api/embed/error-page/$', ErrorPageEmbedView.as_view(),
name='sentry-error-page-embed'),
# Auth
url(r'^auth/link/(?P<organization_slug>[^/]+)/$', AuthLinkIdentityView.as_view(),
name='sentry-auth-link-identity'),
url(r'^auth/login/$', AuthLoginView.as_view(),
name='sentry-login'),
url(r'^auth/login/(?P<organization_slug>[^/]+)/$', AuthOrganizationLoginView.as_view(),
name='sentry-auth-organization'),
url(r'^auth/sso/$', AuthProviderLoginView.as_view(),
name='sentry-auth-sso'),
url(r'^auth/logout/$', AuthLogoutView.as_view(),
name='sentry-logout'),
# Account
url(r'^login-redirect/$', accounts.login_redirect,
name='sentry-login-redirect'),
url(r'^register/$', accounts.register,
开发者ID:JTCunning,项目名称:sentry,代码行数:31,代码来源:urls.py
示例4: url
# API
url(r"^api/0/", include("sentry.api.urls")),
url(r"^api/hooks/mailgun/inbound/", MailgunInboundWebhookView.as_view(), name="sentry-mailgun-inbound-hook"),
url(
r"^api/hooks/release/(?P<plugin_id>[^/]+)/(?P<project_id>[^/]+)/(?P<signature>[^/]+)/",
ReleaseWebhookView.as_view(),
name="sentry-release-hook",
),
url(r"^api/embed/error-page/$", ErrorPageEmbedView.as_view(), name="sentry-error-page-embed"),
# Auth
url(
r"^auth/link/(?P<organization_slug>[^/]+)/$",
AuthOrganizationLoginView.as_view(),
name="sentry-auth-link-identity",
),
url(r"^auth/login/$", AuthLoginView.as_view(), name="sentry-login"),
url(
r"^auth/login/(?P<organization_slug>[^/]+)/$",
AuthOrganizationLoginView.as_view(),
name="sentry-auth-organization",
),
url(r"^auth/sso/$", AuthProviderLoginView.as_view(), name="sentry-auth-sso"),
url(r"^auth/logout/$", AuthLogoutView.as_view(), name="sentry-logout"),
# Account
url(r"^login-redirect/$", accounts.login_redirect, name="sentry-login-redirect"),
url(r"^register/$", AuthLoginView.as_view(), name="sentry-register"),
url(r"^account/sudo/$", "sudo.views.sudo", {"template_name": "sentry/account/sudo.html"}, name="sentry-sudo"),
url(r"^account/recover/$", accounts.recover, name="sentry-account-recover"),
url(
r"^account/recover/confirm/(?P<user_id>[\d]+)/(?P<hash>[0-9a-zA-Z]+)/$",
accounts.recover_confirm,
开发者ID:pratyk,项目名称:sentry,代码行数:31,代码来源:urls.py
注:本文中的sentry.web.frontend.auth_login.AuthLoginView类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论