| 28 | } |
| 29 | |
| 30 | type User struct { |
| 31 | BaseModel `bson:",inline"` |
| 32 | Email string `bson:"email,unique"` |
| 33 | Name string `bson:"name"` |
| 34 | Picture string `bson:"picture"` |
| 35 | LastLogin bson.DateTime `bson:"last_login"` |
| 36 | Settings Settings `bson:"settings"` |
| 37 | Instructions string `bson:"instructions"` |
| 38 | } |
| 39 | |
| 40 | func (u User) CollectionName() string { |
| 41 | return "users" |
nothing calls this directly
no outgoing calls
no test coverage detected