You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: botsfwmodels/base_data.go
+14-8Lines changed: 14 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -8,27 +8,33 @@ import (
8
8
// BotBaseData holds properties common to all bot entities
9
9
typeBotBaseDatastruct {
10
10
//user.OwnedByUserWithID
11
-
AppUserIDstring// intentionally indexed & do NOT omitempty (so we can find records with empty AppUserID)
11
+
AppUserIDstring`json:"appUserID" dalgo:"appUserID" firestore:"appUserID"`// intentionally indexed & do NOT omitempty (so we can find records with empty AppUserID)
12
12
13
13
// AppUserIntID is a strongly typed ID of the user
14
14
// Deprecated: use AppUserID instead, remove once all bots are migrated
0 commit comments