save audit message
This commit is contained in:
parent
3af1bebdf2
commit
48fa66bf61
|
@ -13,6 +13,7 @@ type CreatePayload struct {
|
|||
TargetID string
|
||||
Action string
|
||||
Data string
|
||||
Message string
|
||||
Author CreatePayloadAuthor
|
||||
}
|
||||
|
||||
|
@ -38,6 +39,7 @@ func (s Service) Create(payload CreatePayload) {
|
|||
Name: payload.Author.Name,
|
||||
},
|
||||
CreatedAt: now(),
|
||||
Message: payload.Message,
|
||||
}
|
||||
|
||||
// Insert to db
|
||||
|
|
|
@ -15,6 +15,7 @@ type Audit struct {
|
|||
Data string `bson:"data" json:"data"`
|
||||
Author Author `bson:"author" json:"author"`
|
||||
CreatedAt time.Time `bson:"createdAt" json:"createdAt"`
|
||||
Message string `bson:"message" json:"message"`
|
||||
}
|
||||
|
||||
// Author ...
|
||||
|
|
Loading…
Reference in New Issue