Skip to content
This repository was archived by the owner on Jan 29, 2024. It is now read-only.

Commit 2ef8936

Browse files
authored
Fix publishing acl config file (#257)
* Fix publishing acl config file * Update CHANGELOG.md
1 parent fd167d5 commit 2ef8936

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `mateusjunges/laravel-acl` will be documented in this file.
44

5+
# 4.0.1
6+
- Fixes publishing config file (#256)
7+
58
# 4.0.0
69
- Added Team permissions
710
- Using morph relations to store model permissions

src/Providers/ACLServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ protected function packagePublishables()
5454
);
5555

5656
$this->publishes([
57-
__DIR__ . '/../../config/acl.php',
57+
__DIR__ . '/../../config/acl.php' => config_path('acl.php'),
5858
], 'acl-config');
5959

6060
$this->publishes([

0 commit comments

Comments
 (0)