forked from tildetown/town
oops
parent
869eaa5f3b
commit
7291a43e68
|
@ -27,7 +27,8 @@ func confirmContinue(msg string) {
|
|||
}
|
||||
|
||||
type jsonSignup struct {
|
||||
Created int
|
||||
Created float64
|
||||
Email string
|
||||
Username string
|
||||
Reasons string
|
||||
Plans string
|
||||
|
@ -67,7 +68,7 @@ func main() {
|
|||
for _, s := range signups {
|
||||
ts := models.TownSignup{
|
||||
Created: time.Unix(int64(s.Created), 0),
|
||||
Email: "TODO crap i forgot to dump this i think",
|
||||
Email: s.Email,
|
||||
How: s.Referral,
|
||||
Why: s.Reasons + "\n" + s.Plans,
|
||||
Links: s.Socials,
|
||||
|
|
Loading…
Reference in New Issue