mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-29 19:14:22 -05:00
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:
@@ -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 });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user