(ctx context.Context, localpart string, telNums []int64)
| 916 | } |
| 917 | |
| 918 | func (a *UserInternalAPI) AddTelNumbers(ctx context.Context, localpart string, telNums []int64) (err error) { |
| 919 | return a.DB.AddTelNumbers(ctx, localpart, telNums) |
| 920 | } |
| 921 | |
| 922 | func (a *UserInternalAPI) PerformSaveThreePIDAssociation(ctx context.Context, req *api.PerformSaveThreePIDAssociationRequest, res *struct{}) error { |
| 923 | return a.DB.SaveThreePIDAssociation(ctx, req.ThreePID, req.Localpart, req.Medium) |
nothing calls this directly
no test coverage detected