Skip to content
New issue

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

Implement custom preferences sync #116

Open
bvanelli opened this issue Mar 1, 2025 · 0 comments
Open

Implement custom preferences sync #116

bvanelli opened this issue Mar 1, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@bvanelli
Copy link
Owner

bvanelli commented Mar 1, 2025

Description

See here, Actual allows you to set how your bank sync should work.

The properties are:

  • custom-sync-mappings-${acctId}: default is below
  • sync-import-pending-${acctId}: if transactions from bank sync with cleared=False should be imported
  • sync-import-notes-${acctId}: if notes should be imported or set to null instead

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'],
    ]),
  ],
]);
@bvanelli bvanelli added the enhancement New feature or request label Mar 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant