diff --git a/api/email.go b/api/email.go index 2c24ebd..f01debf 100644 --- a/api/email.go +++ b/api/email.go @@ -5,10 +5,10 @@ import ( ) type email struct { - Email string `json:"email"` - UnsubscribeSecretHex string `json:"unsubscribeSecretHex"` + Email string `json:"email"` + UnsubscribeSecretHex string `json:"unsubscribeSecretHex"` LastEmailNotificationDate time.Time `json:"lastEmailNotificationDate"` - PendingEmails int `json:"-"` - SendReplyNotifications bool `json:"sendReplyNotifications"` - SendModeratorNotifications bool `json:"sendModeratorNotifications"` + PendingEmails int `json:"-"` + SendReplyNotifications bool `json:"sendReplyNotifications"` + SendModeratorNotifications bool `json:"sendModeratorNotifications"` }