We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See here, Actual allows you to set how your bank sync should work.
The properties are:
custom-sync-mappings-${acctId}
sync-import-pending-${acctId}
cleared=False
sync-import-notes-${acctId}
The default mappings are:
export const defaultMappings: Mappings = new Map([ [ 'payment', new Map([ ['date', 'date'], ['payee', 'payeeName'], ['notes', 'notes'], ]), ], [ 'deposit', new Map([ ['date', 'date'], ['payee', 'payeeName'], ['notes', 'notes'], ]), ], ]);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
See here, Actual allows you to set how your bank sync should work.
The properties are:
custom-sync-mappings-${acctId}
: default is belowsync-import-pending-${acctId}
: if transactions from bank sync withcleared=False
should be importedsync-import-notes-${acctId}
: if notes should be imported or set to null insteadThe default mappings are:
The text was updated successfully, but these errors were encountered: