GetChannels returns a slice of group topic names where the user is a channel reader.
(id types.Uid)
| 456 | |
| 457 | // GetChannels returns a slice of group topic names where the user is a channel reader. |
| 458 | func (usersMapper) GetChannels(id types.Uid) ([]string, error) { |
| 459 | return adp.ChannelsForUser(id) |
| 460 | } |
| 461 | |
| 462 | // UpsertCred adds or updates a credential validation request. Return true if the record was inserted, false if updated. |
| 463 | func (usersMapper) UpsertCred(cred *types.Credential) (bool, error) { |
nothing calls this directly
no test coverage detected