Remove unused payee rules feature (#985)

Fixes #615. I would appreciate double-checking that I didn’t
accidentally delete anything that is important.

Since I’m removing the related API methods, this is technically a
breaking change (even if people would have no reason to remove this
stuff), so we should probably do a major release of the API package.
This commit is contained in:
Jed Fox
2023-05-02 14:08:05 -04:00
committed by GitHub
parent 66f7336be8
commit 646d0d90a4
14 changed files with 13 additions and 351 deletions

View File

@@ -149,19 +149,3 @@ export function updatePayee(id, fields) {
export function deletePayee(id) {
return send('api/payee-delete', { id });
}
export function getPayeeRules(payeeId) {
return send('api/payee-rules-get', { payeeId });
}
export function createPayeeRule(payeeId, rule) {
return send('api/payee-rule-create', { payee_id: payeeId, rule });
}
export function updatePayeeRule(id, fields) {
return send('api/payee-rule-update', { id, fields });
}
export function deletePayeeRule(id) {
return send('api/payee-rule-delete', { id });
}