diff options
Diffstat (limited to 'bridge/core/import.go')
-rw-r--r-- | bridge/core/import.go | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/bridge/core/import.go b/bridge/core/import.go index cff30f613..e4771d2c1 100644 --- a/bridge/core/import.go +++ b/bridge/core/import.go @@ -10,14 +10,26 @@ type ImportEvent int const ( _ ImportEvent = iota + + // Bug has been created ImportEventBug + // Comment has been created ImportEventComment + // Comment has been edited ImportEventCommentEdition + // Bug's status has changed ImportEventStatusChange + // Bug's title has changed ImportEventTitleEdition + // Bug's labels changed ImportEventLabelChange - ImportEventIdentity + // Nothing happened on a Bug ImportEventNothing + + // Identity has been created + ImportEventIdentity + + // Error happened during import ImportEventError ) |