diff --git a/action_create.go b/action_create.go index d8440ec..1ebfa20 100644 --- a/action_create.go +++ b/action_create.go @@ -21,6 +21,7 @@ type CreatePayload struct { type CreatePayloadAuthor struct { ID string Name string + Type string } // Create ... @@ -37,6 +38,7 @@ func (s Service) Create(payload CreatePayload) { Author: Author{ ID: payload.Author.ID, Name: payload.Author.Name, + Type: payload.Author.Type, }, CreatedAt: now(), Message: payload.Message, diff --git a/db_model.go b/db_model.go index 139905e..b84d80d 100644 --- a/db_model.go +++ b/db_model.go @@ -22,4 +22,5 @@ type Audit struct { type Author struct { ID string `bson:"id" json:"id"` Name string `bson:"name" json:"name"` + Type string `bson:"type" json:"type"` }