Implemented ratings UI

This commit is contained in:
2017-06-08 11:51:34 +02:00
parent 74b405e4b4
commit 4a6e4378ce
12 changed files with 92 additions and 18 deletions

View File

@ -8,7 +8,6 @@ import (
func main() {
color.Yellow("Updating user references")
// Delete Nick:User records
arn.Truncate("NickToUser")
arn.Truncate("EmailToUser")
@ -26,7 +25,10 @@ func main() {
println(count, user.Nick)
user.SetNick(user.Nick)
user.SetEmail(user.Email)
if user.Email != "" {
user.SetEmail(user.Email)
}
}
color.Green("Finished.")