Skip to content

Commit

Permalink
Fix permission middleware name
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusIII committed Nov 19, 2023
1 parent 498b1a3 commit 5bc99fd
Show file tree
Hide file tree
Showing 96 changed files with 21,648 additions and 21,609 deletions.
6 changes: 3 additions & 3 deletions app/Http/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ class Kernel extends HttpKernel
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
'isVerified' => \Jrean\UserVerification\Middleware\IsVerified::class,
'role' => \Spatie\Permission\Middlewares\RoleMiddleware::class,
'permission' => \Spatie\Permission\Middlewares\PermissionMiddleware::class,
'role_or_permission' => \Spatie\Permission\Middlewares\RoleOrPermissionMiddleware::class,
'role' => \Spatie\Permission\Middleware\RoleMiddleware::class,
'permission' => \Spatie\Permission\Middleware\PermissionMiddleware::class,
'role_or_permission' => \Spatie\Permission\Middleware\RoleOrPermissionMiddleware::class,
'clearance' => \App\Http\Middleware\ClearanceMiddleware::class,
'2fa' => \App\Http\Middleware\Google2FAMiddleware::class,
];
Expand Down
10 changes: 5 additions & 5 deletions public/assets/css/all-css.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/assets/js/all-js.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/advlist/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.10.7 (2022-12-06)
* Version: 5.10.9 (2023-11-15)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/plugins/advlist/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/anchor/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.10.7 (2022-12-06)
* Version: 5.10.9 (2023-11-15)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/plugins/anchor/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/autolink/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.10.7 (2022-12-06)
* Version: 5.10.9 (2023-11-15)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/plugins/autolink/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/autoresize/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.10.7 (2022-12-06)
* Version: 5.10.9 (2023-11-15)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/plugins/autoresize/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/autosave/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.10.7 (2022-12-06)
* Version: 5.10.9 (2023-11-15)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/plugins/autosave/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/bbcode/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.10.7 (2022-12-06)
* Version: 5.10.9 (2023-11-15)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/plugins/bbcode/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/charmap/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.10.7 (2022-12-06)
* Version: 5.10.9 (2023-11-15)
*/
(function () {
'use strict';
Expand Down
Loading

0 comments on commit 5bc99fd

Please sign in to comment.