mirror of
https://github.com/ghostersk/gowebmail.git
synced 2026-09-15 00:00:36 +01:00
fix deleting messages was not updating server
This commit is contained in:
@@ -136,6 +136,13 @@ type Label struct {
|
||||
Color string `json:"color"` // hex, e.g. "#5b8def"
|
||||
}
|
||||
|
||||
// SpamBlockEntry pairs a blocked sender address with when it was added — Settings >
|
||||
// Security > Spam Block.
|
||||
type SpamBlockEntry struct {
|
||||
Sender string `json:"sender"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
||||
// Folder represents a mailbox folder or Gmail label.
|
||||
type Folder struct {
|
||||
ID int64 `json:"id"`
|
||||
|
||||
Reference in New Issue
Block a user