GrafeasGroup / blossom

The website. The app. The everything.
6 stars 3 forks source link

Add easy way to handle transfer of gamma / transcriptions from one account to another #96

Closed itsthejoker closed 3 years ago

itsthejoker commented 4 years ago

Right now, this can be done through shell quite easily:

old = BlossomUser.objects.get(username="old_account")
new = BlossomUser.objects.get(username="new_account")

transcriptions = Transcription.objects.filter(author=old)
for T in transcriptions:
  T.author = new
  T.save()

But there should be either a graphical interface method for this or a way to do it using the slack connector.

TimJentzsch commented 3 years ago

Closing this in favor of #165.