Some checks failed
/ docker (push) Failing after 3m1s
- Clean up some logging - Properly store likes in db
8 lines
234 B
Go
8 lines
234 B
Go
package models
|
|
|
|
type Activity struct {
|
|
Id string `gorm:"primarykey"`
|
|
Type string // `gorm:"type:activitystreams_activity_type"`
|
|
ObjectId string
|
|
ObjectType uint32 // Target type: ActivitystreamsActivityTargetType
|
|
}
|