-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add manage contents permission and visit horizon dashboard permission
- Loading branch information
Showing
8 changed files
with
160 additions
and
7 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,32 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Allowed TLDs - Use with caution! | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This is to prevent mis-usage during production if debug mode is | ||
| unintentionally left active. The package will detect the site | ||
| URL and if the TLD isn't present in this array, it will not | ||
| activate. If your development TLD is different to .dev or | ||
| .local, simply add it to the arrow below. | ||
| | ||
*/ | ||
|
||
'allowed_tlds' => ['dev', 'local', 'test'], | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| User Model | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Path to the application User model. This will be used to retrieve the users | ||
| displayed in the select dropdown. This must be an Eloquent Model instance. | ||
| | ||
*/ | ||
|
||
'user_model' => App\Models\User::class | ||
|
||
]; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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