mirror of
https://github.com/opensupports/opensupports.git
synced 2025-07-31 01:35:15 +02:00
Ivan - Add all ticket events to Ticketevent datastore [skip ci]
This commit is contained in:
parent
642409a47b
commit
1f7efd4086
@ -5,20 +5,21 @@ class Ticketevent extends DataStore {
|
|||||||
|
|
||||||
const COMMENT = 'COMMENT';
|
const COMMENT = 'COMMENT';
|
||||||
const ASSIGN = 'ASSIGN';
|
const ASSIGN = 'ASSIGN';
|
||||||
const UNASSIGN = 'UNASSIGN';
|
const UN_ASSIGN = 'UN_ASSIGN';
|
||||||
const CLOSE = 'CLOSE';
|
const CLOSE = 'CLOSE';
|
||||||
const REOPEN = 'REOPEN';
|
const RE_OPEN = 'RE_OPEN';
|
||||||
const DEPARTMENT_CHANGED = 'DEPARTMENT_CHANGED';
|
const DEPARTMENT_CHANGED = 'DEPARTMENT_CHANGED';
|
||||||
const PRIORITY_CHANGED = 'PRIORITY_CHANGED';
|
const PRIORITY_CHANGED = 'PRIORITY_CHANGED';
|
||||||
|
|
||||||
private static function getEventTypes() {
|
private static function getEventTypes() {
|
||||||
return [
|
return [
|
||||||
'COMMENT',
|
'COMMENT',
|
||||||
'UNASSIGN',
|
'ASSIGN',
|
||||||
|
'UN_ASSIGN',
|
||||||
'CLOSE',
|
'CLOSE',
|
||||||
'REOPEN',
|
'RE_OPEN',
|
||||||
'DEPARTMENT_CHANGED',
|
'DEPARTMENT_CHANGED',
|
||||||
'PRIORITY_CHANGED',
|
'PRIORITY_CHANGED'
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user