Look up the room ID a given alias refers to. Returns an error if there was a problem talking to the database.
(ctx context.Context, alias string)
| 109 | // Look up the room ID a given alias refers to. |
| 110 | // Returns an error if there was a problem talking to the database. |
| 111 | GetRoomIDForAlias(ctx context.Context, alias string) (string, error) |
| 112 | // Look up all aliases referring to a given room ID. |
| 113 | // Returns an error if there was a problem talking to the database. |
| 114 | GetAliasesForRoomID(ctx context.Context, roomID string) ([]string, error) |
no outgoing calls
no test coverage detected