Skip to content

Commit fbe9623

Browse files
authored
feat: add deactivated support for users (#147)
1 parent 7efd005 commit fbe9623

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/cmd/chat/imports/validator/items.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ type userItem struct {
9797
Invisible bool `json:"invisible"`
9898
CreatedAt time.Time `json:"created_at"`
9999
UpdatedAt time.Time `json:"updated_at"`
100-
DeletedAt time.Time `json:"deleted_at"`
100+
DeletedAt *time.Time `json:"deleted_at"`
101+
DeactivatedAt *time.Time `json:"deactivated_at"`
101102
Teams []string `json:"teams"`
102103
PushNotifications pushNotification `json:"push_notifications"`
103104
Custom extraFields

0 commit comments

Comments
 (0)