Skip to content

Commit

Permalink
Merge pull request #38 from envor/main
Browse files Browse the repository at this point in the history
bootstrap shared migrations middleware
  • Loading branch information
inmanturbo authored Jul 10, 2024
2 parents 4b840be + 0678883 commit c8c848e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to `one-app` will be documented in this file.

## v1.0.29 - 2024-07-10

### What's Changed

* Run all migrations for tests by @inmanturbo in https://github.com/envor/one-app/pull/37

**Full Changelog**: https://github.com/envor/one-app/compare/v1.0.28...v1.0.29

## v1.0.28 - 2024-07-10

### What's Changed
Expand Down
2 changes: 2 additions & 0 deletions stubs/one-app/bootstrap/app.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

use App\Http\Middleware\DomainMiddleware;
use App\Http\Middleware\SharedMigrationsMiddleware;
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
Expand All @@ -18,6 +19,7 @@
// push some middeleware to the web group
$middleware->appendToGroup('web', [
DomainMiddleware::class,
SharedMigrationsMiddleware::class,
]);
})
->withExceptions(function (Exceptions $exceptions) {
Expand Down

0 comments on commit c8c848e

Please sign in to comment.