-
-
Notifications
You must be signed in to change notification settings - Fork 86
🚀 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
Open
alexanderwassbjer
wants to merge
50
commits into
oss-apps:main
Choose a base branch
from
alexanderwassbjer:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,444
−152
Open
Changes from 45 commits
Commits
Show all changes
50 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 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 +1,2 @@ | ||
pnpm lint-staged | ||
pnpm tsc --noEmit | ||
krokosik marked this conversation as resolved.
Show resolved
Hide resolved
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
prisma/migrations/20241026095834_add_gocardless_bank_transaction_integration/migration.sql
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,22 @@ | ||
-- AlterTable | ||
ALTER TABLE "Expense" ADD COLUMN "transactionId" TEXT; | ||
|
||
-- AlterTable | ||
ALTER TABLE "User" ADD COLUMN "bankingId" TEXT, | ||
ADD COLUMN "obapiProviderId" TEXT; | ||
|
||
-- CreateTable | ||
CREATE TABLE "CachedBankData" ( | ||
"id" SERIAL NOT NULL, | ||
"obapiProviderId" TEXT NOT NULL, | ||
"data" TEXT NOT NULL, | ||
"userId" INTEGER NOT NULL, | ||
"lastFetched" TIMESTAMP(3) NOT NULL, | ||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
"updatedAt" TIMESTAMP(3) NOT NULL, | ||
|
||
CONSTRAINT "CachedBankData_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "CachedBankData_obapiProviderId_key" ON "CachedBankData"("obapiProviderId"); |
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
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
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.