Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hypha
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ots
hypha
Commits
864d5640
Commit
864d5640
authored
7 years ago
by
Dan Braghis
Browse files
Options
Downloads
Patches
Plain Diff
Add missing methods on our custom user
parent
5bd093a0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
opentech/apply/users/models.py
+10
-0
10 additions, 0 deletions
opentech/apply/users/models.py
with
10 additions
and
0 deletions
opentech/apply/users/models.py
+
10
−
0
View file @
864d5640
from
django.db
import
models
from
django.contrib.auth.models
import
AbstractBaseUser
,
BaseUserManager
,
PermissionsMixin
from
django.core.mail
import
send_mail
from
django.utils
import
timezone
from
django.utils.translation
import
gettext_lazy
as
_
from
.utils
import
send_activation_email
class
UserManager
(
BaseUserManager
):
use_in_migrations
=
True
...
...
@@ -74,8 +76,16 @@ class User(AbstractBaseUser, PermissionsMixin):
def
__str__
(
self
):
return
self
.
get_full_name
()
def
clean
(
self
):
super
().
clean
()
self
.
email
=
self
.
__class__
.
objects
.
normalize_email
(
self
.
email
)
def
get_full_name
(
self
):
return
self
.
full_name
.
strip
()
def
get_short_name
(
self
):
return
self
.
email
def
email_user
(
self
,
subject
,
message
,
from_email
=
None
,
**
kwargs
):
"""
Send an email to this user.
"""
send_mail
(
subject
,
message
,
from_email
,
[
self
.
email
],
**
kwargs
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment