maps-service/pkg/model/submission.go

35 lines
810 B
Go
Raw Normal View History

2024-11-26 21:36:40 +00:00
package model
import "time"
2024-11-28 01:27:22 +00:00
type Status int32
2024-12-12 22:29:20 +00:00
const (
StatusPublished Status = 8
StatusRejected Status = 7
2024-11-28 01:27:22 +00:00
2024-12-12 22:29:20 +00:00
StatusPublishing Status = 6
StatusValidated Status = 5
StatusValidating Status = 4
StatusAccepted Status = 3
2024-11-28 01:27:22 +00:00
2024-12-12 22:29:20 +00:00
StatusChangesRequested Status = 2
StatusSubmitted Status = 1
StatusUnderConstruction Status = 0
2024-11-28 01:27:22 +00:00
)
2024-11-26 23:30:58 +00:00
type Submission struct {
2024-12-12 22:29:20 +00:00
ID int64 `gorm:"primaryKey"`
DisplayName string
Creator string
GameID int32
CreatedAt time.Time
UpdatedAt time.Time
Submitter uint64 // UserID
AssetID uint64
AssetVersion uint64
Completed bool // Has this version of the map been completed at least once on maptest
TargetAssetID uint64 // where to upload map fix. if the TargetAssetID is 0, it's a new map.
StatusID Status
2024-11-26 21:36:40 +00:00
}