/usr/share/doc/python-django-allauth/html/signals.html is in python-django-allauth-doc 0.35.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Signals — django-allauth 0.32.0 documentation</title>
<link rel="stylesheet" href="_static/classic.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.32.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="Views" href="views.html" />
<link rel="prev" title="Providers" href="providers.html" />
</head>
<body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="views.html" title="Views"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="providers.html" title="Providers"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">django-allauth 0.32.0 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="signals">
<h1>Signals<a class="headerlink" href="#signals" title="Permalink to this headline">¶</a></h1>
<p>There are several signals emitted during authentication flows. You can
hook to them for your own needs.</p>
<div class="section" id="allauth-account">
<h2>allauth.account<a class="headerlink" href="#allauth-account" title="Permalink to this headline">¶</a></h2>
<ul>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.user_logged_in(request,</span> <span class="pre">user)</span></code></p>
<p>Sent when a user logs in.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.user_logged_out(request,</span> <span class="pre">user)</span></code></p>
<p>Sent when a user logs out.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.user_signed_up(request,</span> <span class="pre">user)</span></code></p>
<p>Sent when a user signs up for an account. This signal is
typically followed by a <code class="docutils literal"><span class="pre">user_logged_in</span></code>, unless e-mail verification
prohibits the user to log in.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.password_set(request,</span> <span class="pre">user)</span></code></p>
<p>Sent when a password has been successfully set for the first time.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.password_changed(request,</span> <span class="pre">user)</span></code></p>
<p>Sent when a password has been successfully changed.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.password_reset(request,</span> <span class="pre">user)</span></code></p>
<p>Sent when a password has been successfully reset.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.email_confirmed(request,</span> <span class="pre">email_address)</span></code></p>
<p>Sent after the email address in the db was updated and set to confirmed.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.email_confirmation_sent(request,</span> <span class="pre">confirmation,</span> <span class="pre">signup)</span></code></p>
<p>Sent right after the email confirmation is sent.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.email_changed(request,</span> <span class="pre">user,</span> <span class="pre">from_email_address,</span> <span class="pre">to_email_address)</span></code></p>
<p>Sent when a primary email address has been changed.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.email_added(request,</span> <span class="pre">user,</span> <span class="pre">email_address)</span></code></p>
<p>Sent when a new email address has been added.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.account.signals.email_removed(request,</span> <span class="pre">user,</span> <span class="pre">email_address)</span></code></p>
<p>Sent when an email address has been deleted.</p>
</li>
</ul>
</div>
<div class="section" id="allauth-socialaccount">
<h2>allauth.socialaccount<a class="headerlink" href="#allauth-socialaccount" title="Permalink to this headline">¶</a></h2>
<ul>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.socialaccount.signals.pre_social_login(request,</span> <span class="pre">sociallogin)</span></code></p>
<p>Sent after a user successfully authenticates via a social provider,
but before the login is fully processed. This signal is emitted as
part of the social login and/or signup process, as well as when
connecting additional social accounts to an existing account. Access
tokens and profile information, if applicable for the provider, is
provided.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.socialaccount.signals.social_account_added(request,</span> <span class="pre">sociallogin)</span></code></p>
<p>Sent after a user connects a social account to a their local account.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.socialaccount.signals.social_account_updated(request,</span> <span class="pre">sociallogin)</span></code></p>
<p>Sent after a social account has been updated. This happens when a user
logs in using an already connected social account, or completes a <cite>connect</cite>
flow for an already connected social account. Useful if you need to
unpack extra data for social accounts as they are updated.</p>
</li>
<li><p class="first"><code class="docutils literal"><span class="pre">allauth.socialaccount.signals.social_account_removed(request,</span> <span class="pre">socialaccount)</span></code></p>
<p>Sent after a user disconnects a social account from their local
account.</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Signals</a><ul>
<li><a class="reference internal" href="#allauth-account">allauth.account</a></li>
<li><a class="reference internal" href="#allauth-socialaccount">allauth.socialaccount</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="providers.html"
title="previous chapter">Providers</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="views.html"
title="next chapter">Views</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/signals.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="views.html" title="Views"
>next</a> |</li>
<li class="right" >
<a href="providers.html" title="Providers"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">django-allauth 0.32.0 documentation</a> »</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2018, Raymond Penners.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.6.6.
</div>
</body>
</html>
|