Username filled automatically with id

1
2
3
4
5
6
    def create_new_user(self, username, email, password):
        new_user = User.objects.create_user(username, email, password)
        new_user.username = str(new_user.id)
        new_user.save()
        return new_user
    create_new_user = transaction.commit_on_success(create_new_user)

More like this

  1. Nested commit_on_success by rfk 2 years, 11 months ago
  2. Automatically read the ID3 tag from a mp3 on save by sbaechler 4 months, 2 weeks ago
  3. Email or username authentication with masquerading by petrilli 2 years, 7 months ago
  4. Unique Slugify by SmileyChris 3 years, 10 months ago
  5. Adding data in a transaction by hughdbrown 2 years, 6 months ago

Comments

(Forgotten your password?)