1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00

Remove the paste-specific autoDelete field

This commit is contained in:
Lukas Schulte Pelkum
2021-07-30 21:51:33 +02:00
parent 4f3b5b193b
commit 1818fac196
12 changed files with 28 additions and 30 deletions

View File

@@ -7,7 +7,6 @@ type legacyPaste struct {
Content string `json:"content"`
DeletionToken string `json:"deletionToken,omitempty"`
Created int64 `json:"created"`
AutoDelete bool `json:"autoDelete"`
}
func legacyFromModern(paste *shared.Paste) *legacyPaste {
@@ -21,6 +20,5 @@ func legacyFromModern(paste *shared.Paste) *legacyPaste {
Content: paste.Content,
DeletionToken: deletionToken,
Created: paste.Created,
AutoDelete: paste.AutoDelete,
}
}