Save a given room alias with the room ID it refers to. Returns an error if there was a problem talking to the database.
(ctx context.Context, alias string, roomID string, creatorUserID string)
| 106 | // Save a given room alias with the room ID it refers to. |
| 107 | // Returns an error if there was a problem talking to the database. |
| 108 | SetRoomAlias(ctx context.Context, alias string, roomID string, creatorUserID string) error |
| 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) |
no outgoing calls
no test coverage detected