2026-03-29 21:24:09 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
type RelType string
|
|
|
|
|
|
2026-03-29 23:16:44 +02:00
|
|
|
type Rel struct {
|
|
|
|
|
Type RelType
|
|
|
|
|
Target string
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-29 21:24:09 +02:00
|
|
|
const (
|
|
|
|
|
RelBlocks RelType = "blocks"
|
|
|
|
|
RelSubtask RelType = "subtask"
|
|
|
|
|
RelRelated RelType = "related"
|
|
|
|
|
RelCreated RelType = "created"
|
|
|
|
|
RelAssignee RelType = "assignee"
|
|
|
|
|
RelInNamespace RelType = "in_namespace"
|
|
|
|
|
RelMentions RelType = "mentions"
|
|
|
|
|
)
|