-
-
Notifications
You must be signed in to change notification settings - Fork 101
🚀 Add bank account transaction integration #132
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
Merged
Merged
Changes from all commits
Commits
Show all changes
73 commits
Select commit
Hold shift + click to select a range
2f63ff3
Add bank account transaction integration
alexanderwassbjer 11b877e
Fixup indent
alexanderwassbjer 37a3235
Correct types
alexanderwassbjer f920861
Refactor some new code
alexanderwassbjer 5bfae3a
Add missing env in docker compose file
alexanderwassbjer a1caeed
Remove duplicates of docker files
alexanderwassbjer 25fc9fa
Update env to not use NEXT_PUBLIC
alexanderwassbjer 88133e9
Revert the country code in getInstitutions
alexanderwassbjer b1c45b1
Refactor a on transaction row click function
alexanderwassbjer 269e169
Remove unused imports/consts to make lint happy
alexanderwassbjer be23003
Fixed some comments from Fredrik
alexanderwassbjer 2c5fb1f
Revert theme support
alexanderwassbjer 45d23ba
Fix bug with floating numbers on exact split calculator
alexanderwassbjer 12cb87d
Merge pull request #1 from alexanderwassbjer/bugfix/floating-numbers
alexanderwassbjer 0bccdc8
Add verified transaction label
alexanderwassbjer 421b40e
Merge branch 'main' of github.com:alexanderwassbjer/split-pro
alexanderwassbjer 17d6fa1
Fixup linebreak in transactions list
alexanderwassbjer d1aeb41
Order by expense created date in the groups list
alexanderwassbjer 0e9a540
Redirect to groupexpense or expense in activity list based on groupId
alexanderwassbjer c00ec9d
Fixup transaction row
alexanderwassbjer 62b71f1
Make the checkbox bigger on mobile
alexanderwassbjer b25422e
Make expenses lines thicker
alexanderwassbjer 74d1bb5
Merge pull request #2 from alexanderwassbjer/feature/order-by-expense…
alexanderwassbjer 8ba44a9
Merge branch 'main' into feature/redirect-expense-page-activity-list-…
alexanderwassbjer b70c2e7
Merge pull request #3 from alexanderwassbjer/feature/redirect-expense…
alexanderwassbjer f860add
Fixup
alexanderwassbjer 5b28495
Add isloading to submit all on bank transaction to prevent adding mul…
alexanderwassbjer bc18bff
Fix
alexanderwassbjer b373a91
Merge remote-tracking branch 'oss-apps/main'
alexanderwassbjer 8bd0abb
Make changes so it works with new versions of splitpro
alexanderwassbjer ddb21f6
Merge branch 'main' of github.com:oss-apps/split-pro
alexanderwassbjer 2ca9ed7
Add missing translations
alexanderwassbjer 4e52d2e
Update to new code
alexanderwassbjer d146267
Add missing translations
alexanderwassbjer a407a69
Merge branch 'main' of github.com:oss-apps/split-pro
alexanderwassbjer 98929c4
Fix lint
alexanderwassbjer 7711c43
Change translations
alexanderwassbjer b6c89b6
Make it compile
alexanderwassbjer 6143f34
Changes from codereview
alexanderwassbjer f2ee70b
Merge branch 'main' of github.com:oss-apps/split-pro
alexanderwassbjer 534299c
Add translations for feature on homepage
alexanderwassbjer 21f5696
Move the envs to page hoc
alexanderwassbjer fabada1
Refactor to make it easier to add more providers
alexanderwassbjer b2546c8
Reuse
alexanderwassbjer afa321f
Fix ts error
alexanderwassbjer 3e873a0
poc with pg_cron
alexanderwassbjer 4408050
Remove the testing cron job
alexanderwassbjer 7d01ea1
Refactor to make it even easier to add more providers
alexanderwassbjer c70e015
Move some reusable code
alexanderwassbjer 1fbb1f5
User language to gocardless session
alexanderwassbjer 5481a77
Merge branch 'main' of github.com:oss-apps/split-pro
alexanderwassbjer 20cc30e
Fix import
alexanderwassbjer c39a955
Change some locales
alexanderwassbjer dacbed6
Add plaid along side with gocardless
alexanderwassbjer 6174e2f
Update plaid support
alexanderwassbjer d039681
Whitespace and locale key regression fixes
krokosik 524cf6a
Changes according to review
alexanderwassbjer 6519788
Merge branch 'main' of github.com:alexanderwassbjer/split-pro
alexanderwassbjer 82afc12
Add migration
alexanderwassbjer b8d8a85
Update cache from migration
alexanderwassbjer ba6c49a
Update according to review
alexanderwassbjer 2bbba1b
Merge branch 'main' of github.com:oss-apps/split-pro
alexanderwassbjer 77eca22
Fix missing translation
alexanderwassbjer 68a7cbf
Comment out multiple transactions
alexanderwassbjer cf14954
Merge migrations, setup the cron jobs
alexanderwassbjer edd0620
Add check for db url
alexanderwassbjer 82677d2
Changes after review
alexanderwassbjer 39c45b1
UI fixes and optional transactionId
krokosik 42d3c4c
Hide clear button when its disabled
krokosik 6c0a226
Fix peer dep issues and next runtime check
krokosik bc38a6e
Fix build
alexanderwassbjer 25c136f
Merge branch 'main' of github.com:alexanderwassbjer/split-pro
alexanderwassbjer 4879d8d
Fix lint
alexanderwassbjer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pnpm lint-staged | ||
pnpm tsgo --noEmit | ||
pnpm tsgo --noEmit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
22.16.0 | ||
22.16.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Bank Account Connection | ||
|
||
> GoCardless is deprecated. Please use Plaid instead. | ||
|
||
### To get started with Plaid: | ||
|
||
1. Create an account on Plaid. | ||
2. Obtain your API keys (client_id and secret). | ||
3. Add the API keys as environment variables in the split-pro repo. See the example in .env.example. | ||
4. You’re done! ✅ | ||
|
||
### How to use the bank connection: | ||
|
||
1. Connect your bank provider to your split-pro account. Log in to split-pro, go to your account page. If Plaid is set up correctly according to the steps above, you will see a “Connect to bank” option on the account page. | ||
2. Once the connection is complete, you can start adding bank transactions. Go to Add new expense in either a group or friend page. There you will find “Transactions”. Click it, select the transactions you want to add, and then click “Submit all.” |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.