mirror of
https://github.com/goharbor/harbor.git
synced 2025-03-02 10:41:59 +01:00
26 lines
839 B
Go
26 lines
839 B
Go
package replication
|
|
|
|
const (
|
|
//FilterItemKindProject : Kind of filter item is 'project'
|
|
FilterItemKindProject = "project"
|
|
//FilterItemKindRepository : Kind of filter item is 'repository'
|
|
FilterItemKindRepository = "repository"
|
|
//FilterItemKindTag : Kind of filter item is 'tag'
|
|
FilterItemKindTag = "tag"
|
|
|
|
//AdaptorKindHarbor : Kind of adaptor of Harbor
|
|
AdaptorKindHarbor = "Harbor"
|
|
|
|
//TriggerKindImmediate : Kind of trigger is 'Immediate'
|
|
TriggerKindImmediate = "Immediate"
|
|
//TriggerKindSchedule : Kind of trigger is 'Scheduled'
|
|
TriggerKindSchedule = "Scheduled"
|
|
//TriggerKindManual : Kind of trigger is 'Manual'
|
|
TriggerKindManual = "Manual"
|
|
|
|
//TriggerScheduleDaily : type of scheduling is 'Daily'
|
|
TriggerScheduleDaily = "Daily"
|
|
//TriggerScheduleWeekly : type of scheduling is 'Weekly'
|
|
TriggerScheduleWeekly = "Weekly"
|
|
)
|