()
| 128 | } |
| 129 | |
| 130 | func (u *User) Save() (err error) { |
| 131 | session := db.Connection.Session.Copy() |
| 132 | defer session.Close() |
| 133 | c := session.DB(conf.MONGODB_DATABASE).C("Users") |
| 134 | _, err = c.Upsert(bson.M{"uuid": u.Uuid}, &u) |
| 135 | return |
| 136 | } |
no test coverage detected