1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +02:00

Provide space add/remove event notifications

This commit is contained in:
sauls8t 2018-02-22 18:13:56 +00:00
parent c705e8c299
commit 8d4c6a19ee
2 changed files with 12 additions and 1 deletions

View file

@ -25,6 +25,10 @@ const (
TypeRemoveUser Type = "USER_DELETE"
// TypeAddDocument for when document created
TypeAddDocument Type = "DOCUMENT_ADD"
// TypeSystemLicenseChange for when adin updates license
// TypeSystemLicenseChange for when global admin user updates license
TypeSystemLicenseChange Type = "LICENSE_CHANGE"
// TypeAddSpace for when space created
TypeAddSpace Type = "SPACE_ADD"
// TypeRemoveSpace for when space removed
TypeRemoveSpace Type = "SPACE_REMOVE"
)