(ctx context.Context, localpart string, mortgageFee string)
| 900 | } |
| 901 | |
| 902 | func (a *UserInternalAPI) SetMortgageFee(ctx context.Context, localpart string, mortgageFee string) (err error) { |
| 903 | return a.DB.SetMortgageFee(ctx, localpart, mortgageFee) |
| 904 | } |
| 905 | |
| 906 | func (a *UserInternalAPI) SetChatFee(ctx context.Context, localpart string, chatFee string) (err error) { |
| 907 | return a.DB.SetChatFee(ctx, localpart, chatFee) |
nothing calls this directly
no test coverage detected