actions
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<div class="top-nav ">
|
||||
<a class="top-nav-item" href="{channel.lucentUrl}/members">Members</a>
|
||||
|
||||
{#if channel.commands}
|
||||
{#if channel.commands.length > 0}
|
||||
<Dropdown>
|
||||
<div slot="button">Actions</div>
|
||||
{#each channel.commands as command}
|
||||
|
||||
@@ -7,7 +7,26 @@ return [
|
||||
"name" => env("LUCENT_NAME", "Lucent"),
|
||||
"url" => env("LUCENT_URL", env('APP_URL')),
|
||||
"previewTarget" => env("LUCENT_PREVIEW_TARGET", "previewTarget"),
|
||||
/*
|
||||
* Make available laravel artisan commands for admin users
|
||||
* example:
|
||||
* [
|
||||
* "command1:signature" => "Description 1"
|
||||
* "command2:signature" => "Description 2"
|
||||
* ]
|
||||
*
|
||||
* */
|
||||
"commands" => [],
|
||||
/*
|
||||
* Image filter will be available both for rich editor fields
|
||||
* and throughout your application
|
||||
*
|
||||
* example:
|
||||
* [
|
||||
* "filterName" => Filter::class
|
||||
* ]
|
||||
*
|
||||
* */
|
||||
"imageFilters" => [],
|
||||
"canInvite" => ["admin"],
|
||||
"canBuild" => ["admin"],
|
||||
|
||||
Reference in New Issue
Block a user