func (TopicsObjMapper) Update(topic string, update map[string]interface{}) error { update["UpdatedAt"] = types.TimeNow() return adaptr.TopicUpdate(topic, update) }
// Update changes values of user's subscription. func (SubsObjMapper) Update(topic string, user types.Uid, update map[string]interface{}) error { update["UpdatedAt"] = types.TimeNow() return adaptr.SubsUpdate(topic, user, update) }
func (UsersObjMapper) Update(uid types.Uid, update map[string]interface{}) error { update["UpdatedAt"] = types.TimeNow() return adaptr.UserUpdate(uid, update) }