closes #1542 Generalize event. Add doc. Update default config. Add filestack to the list of plugins. Check that video conversion event returns 400. Update the readme. Update the changelog.
22 lines
405 B
Go
22 lines
405 B
Go
package filestack
|
|
|
|
import "strconv"
|
|
|
|
type FilestackEvent struct {
|
|
Action string `json:"action"`
|
|
TimeStamp int64 `json:"timestamp"`
|
|
Id int `json:"id"`
|
|
}
|
|
|
|
func (fe *FilestackEvent) Tags() map[string]string {
|
|
return map[string]string{
|
|
"action": fe.Action,
|
|
}
|
|
}
|
|
|
|
func (fe *FilestackEvent) Fields() map[string]interface{} {
|
|
return map[string]interface{}{
|
|
"id": strconv.Itoa(fe.Id),
|
|
}
|
|
}
|