mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-02 08:49:29 -05:00
a83492d7ab
Signed-off-by: jkoberg <jkoberg@owncloud.com>
18 lines
392 B
Go
18 lines
392 B
Go
package service
|
|
|
|
import "time"
|
|
|
|
var (
|
|
_globalEventsKey = "global-events"
|
|
)
|
|
|
|
// DeprovisionData is the data needed for the deprovision global event
|
|
type DeprovisionData struct {
|
|
// The deprovision date
|
|
DeprovisionDate time.Time `json:"deprovision_date"`
|
|
// The Format of the deprvision date
|
|
DeprovisionFormat string
|
|
// The user who stored the deprovision message
|
|
Deprovisioner string
|
|
}
|