-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into sdp-multitenant
# Conflicts: # cmd/db_test.go # cmd/serve.go # cmd/serve_test.go # db/migrations/sdp-migrations/2023-12-18.0-alter-payments-table-add-external-payment-id.sql # db/migrations/sdp-migrations/2024-01-12.0-alter-disbursements-table-add-sms-template.sql # db/migrations/sdp-migrations/2024-02-05.0-tss-transactions-table-amount-constraing.sql # dev/docker-compose-sdp-anchor.yml # dev/docker-compose-tss.yml # dev/docker-compose.yml # go.list # go.mod # go.sum # helmchart/sdp/Chart.yaml # helmchart/sdp/README.md # helmchart/sdp/values.yaml # internal/data/assets_test.go # internal/data/disbursement_instructions.go # internal/data/disbursement_instructions_test.go # internal/data/wallets.go # internal/integrationtests/docker-compose-e2e-tests.yml # internal/serve/httphandler/disbursement_handler.go # internal/serve/httphandler/disbursement_handler_test.go # internal/serve/httphandler/forgot_password_handler.go # internal/serve/httphandler/forgot_password_handler_test.go # internal/serve/httphandler/login_handler.go # internal/serve/httphandler/login_handler_test.go # internal/serve/httphandler/payments_handler_test.go # internal/serve/httphandler/profile_handler_test.go # internal/serve/httphandler/user_handler.go # internal/serve/serve.go # internal/serve/serve_test.go # internal/services/disbursement_management_service.go # internal/services/disbursement_management_service_test.go # stellar-auth/pkg/auth/auth.go
- Loading branch information
Showing
95 changed files
with
4,447 additions
and
1,809 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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
9 changes: 9 additions & 0 deletions
9
db/migrations/sdp-migrations/2023-12-18.0-alter-payments-table-add-external-payment-id.sql
This file contains 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,9 @@ | ||
-- +migrate Up | ||
|
||
ALTER TABLE payments | ||
ADD COLUMN external_payment_id VARCHAR(64) NULL; | ||
|
||
-- +migrate Down | ||
|
||
ALTER TABLE payments | ||
DROP COLUMN external_payment_id; |
9 changes: 9 additions & 0 deletions
9
db/migrations/sdp-migrations/2024-01-12.0-alter-disbursements-table-add-sms-template.sql
This file contains 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,9 @@ | ||
-- +migrate Up | ||
ALTER TABLE | ||
disbursements | ||
ADD | ||
COLUMN sms_registration_message_template TEXT NULL; | ||
|
||
-- +migrate Down | ||
ALTER TABLE | ||
disbursements DROP COLUMN sms_registration_message_template; |
6 changes: 6 additions & 0 deletions
6
db/migrations/tss-migrations/2024-02-05.0-tss-transactions-table-amount-constraing.sql
This file contains 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,6 @@ | ||
-- +migrate Up | ||
|
||
ALTER TABLE submitter_transactions | ||
ALTER COLUMN amount TYPE NUMERIC(19,7); | ||
|
||
-- +migrate Down |
This file contains 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 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 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.