@@ -23,8 +23,7 @@ type User struct {
2323 BannedAt * time.Time `json:"bannedAt" graphql:"bannedAt"`
2424 //BannedReason *BannedReasonType `json:"bannedReason" graphql:"bannedReason"`
2525 //EmailPreference map[string]bool `json:"emailPreference" graphql:"emailPreference"`
26- AgreedAt * time.Time `json:"agreedAt" graphql:"agreedAt"`
27- LastCheckedInAt * time.Time `json:"lastCheckedInAt" graphql:"lastCheckedInAt"`
26+ AgreedAt * time.Time `json:"agreedAt" graphql:"agreedAt"`
2827 // DiscordID is the user's Discord ID.
2928 DiscordID * string `json:"discordID" graphql:"discordID"`
3029 ID string `json:"_id" graphql:"_id"`
@@ -37,7 +36,7 @@ type User struct {
3736}
3837
3938func (u * User ) Header () []string {
40- return []string {"ID" , "Name" , "Username" , "Email" , "Language" , "LastCheckInAt" , " RegisteredAt" }
39+ return []string {"ID" , "Name" , "Username" , "Email" , "Language" , "RegisteredAt" }
4140}
4241
4342func (u * User ) Rows () [][]string {
@@ -47,7 +46,6 @@ func (u *User) Rows() [][]string {
4746 row = append (row , u .Username )
4847 row = append (row , u .Email )
4948 row = append (row , u .Language )
50- row = append (row , u .LastCheckedInAt .Format (time .RFC3339 ))
5149 row = append (row , u .CreatedAt .Format (time .RFC3339 ))
5250
5351 return [][]string {row }
0 commit comments