mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
25 lines
573 B
Go
25 lines
573 B
Go
package v1
|
|
|
|
import "github.com/lus/pasty/internal/shared"
|
|
|
|
type legacyPaste struct {
|
|
ID string `json:"id"`
|
|
Content string `json:"content"`
|
|
DeletionToken string `json:"deletionToken,omitempty"`
|
|
Created int64 `json:"created"`
|
|
}
|
|
|
|
func legacyFromModern(paste *shared.Paste) *legacyPaste {
|
|
deletionToken := paste.ModificationToken
|
|
if deletionToken == "" {
|
|
deletionToken = paste.DeletionToken
|
|
}
|
|
|
|
return &legacyPaste{
|
|
ID: paste.ID,
|
|
Content: paste.Content,
|
|
DeletionToken: deletionToken,
|
|
Created: paste.Created,
|
|
}
|
|
}
|