weiro/models/sites.go

33 lines
489 B
Go
Raw Normal View History

2026-02-18 11:07:18 +00:00
package models
import "time"
2026-02-19 11:29:44 +00:00
type PublishTargetType int
2026-02-19 10:21:27 +00:00
const (
2026-02-19 11:29:44 +00:00
PublishTargetTypeNone PublishTargetType = 0
PublishTargetTypeLocalFS PublishTargetType = 1
PublishTargetTypeNetlify PublishTargetType = 2
2026-02-19 10:21:27 +00:00
)
2026-02-18 11:07:18 +00:00
type Site struct {
2026-02-19 10:21:27 +00:00
ID int64
OwnerID int64
2026-02-27 22:49:43 +00:00
GUID string
Created time.Time
2026-02-19 10:21:27 +00:00
Title string
Tagline string
2026-02-18 11:07:18 +00:00
}
2026-02-19 10:21:27 +00:00
type SitePublishTarget struct {
ID int64
SiteID int64
Enabled bool
2026-02-19 11:29:44 +00:00
BaseURL string
2026-02-20 06:39:58 +00:00
TargetType string
2026-02-19 11:29:44 +00:00
TargetRef string
TargetKey string
2026-02-19 10:21:27 +00:00
}