trunk
vilmibm 2023-03-15 08:11:55 +00:00
parent 869eaa5f3b
commit 7291a43e68
1 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,8 @@ func confirmContinue(msg string) {
} }
type jsonSignup struct { type jsonSignup struct {
Created int Created float64
Email string
Username string Username string
Reasons string Reasons string
Plans string Plans string
@ -67,7 +68,7 @@ func main() {
for _, s := range signups { for _, s := range signups {
ts := models.TownSignup{ ts := models.TownSignup{
Created: time.Unix(int64(s.Created), 0), Created: time.Unix(int64(s.Created), 0),
Email: "TODO crap i forgot to dump this i think", Email: s.Email,
How: s.Referral, How: s.Referral,
Why: s.Reasons + "\n" + s.Plans, Why: s.Reasons + "\n" + s.Plans,
Links: s.Socials, Links: s.Socials,