Skip to content

Commit

Permalink
release v135
Browse files Browse the repository at this point in the history
  • Loading branch information
admin-forus committed Oct 30, 2024
1 parent 819a1e3 commit 2d105c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 41 files
+0 −36 app/Console/Commands/CheckFundStateCommand.php
+48 −0 app/Console/Commands/FundsExtendPeriodCommand.php
+62 −0 app/Console/Commands/FundsUpdateStateCommand.php
+13 −5 app/Console/Kernel.php
+11 −1 app/Http/Controllers/Api/Platform/OrganizationsController.php
+18 −15 app/Http/Requests/Api/Platform/Organizations/IndexOrganizationRequest.php
+10 −0 app/Http/Requests/Api/Platform/Organizations/Sponsor/Payouts/StorePayoutTransactionBatchRequest.php
+4 −3 app/Http/Resources/OrganizationResource.php
+1 −0 app/Http/Resources/OrganizationWithPrivateResource.php
+1 −1 app/Http/Resources/Provider/ProviderVoucherTransactionEmployeeResource.php
+1 −1 app/Http/Resources/Provider/ProviderVoucherTransactionResource.php
+1 −1 app/Http/Resources/VoucherTransactionResource.php
+12 −31 app/Models/Fund.php
+102 −0 app/Models/FundPeriod.php
+2 −104 app/Models/Organization.php
+1 −1 app/Models/VoucherTransaction.php
+31 −0 app/Scopes/Builders/OrganizationQuery.php
+3 −3 app/Scopes/Builders/VoucherTransactionQuery.php
+120 −0 app/Searches/OrganizationSearch.php
+15 −23 app/Services/EventLogService/EventLogService.php
+0 −23 app/Services/EventLogService/Interfaces/IEventLogService.php
+0 −2 app/Services/EventLogService/Traits/HasLogs.php
+1 −2 app/helpers.php
+373 −432 composer.lock
+1 −1 config/forus/sessions.php
+3 −0 config/forus/tests.php
+36 −0 database/migrations/2024_10_23_170241_create_fund_periods_table.php
+1 −1 docker/cmd/start-docker-compose.sh
+1 −1 docker/docker-compose/php/Dockerfile
+2 −2 tests/Browser/AuthenticationTest.php
+9 −15 tests/Browser/DebugFrontendConnectivityTest.php
+1 −1 tests/Browser/FundRequestClarificationTest.php
+3 −3 tests/Browser/FundRequestTest.php
+2 −2 tests/Browser/IdentityEmailTest.php
+10 −8 tests/Browser/ProductReservationTest.php
+7 −7 tests/Browser/ReimbursementTest.php
+3 −3 tests/Browser/Traits/HasFrontendActions.php
+24 −2 tests/Browser/VoucherBatchTest.php
+5 −1 tests/DuskTestCase.php
+61 −0 tests/Feature/FundPeriodTest.php
+12 −0 tests/TestCases/VoucherBatchTestCases.php

0 comments on commit 2d105c5

Please sign in to comment.