19 lines
430 B
PHP
19 lines
430 B
PHP
<?php
|
|
|
|
namespace Blomstra\Search;
|
|
|
|
use Flarum\Extend as Flarum;
|
|
|
|
return [
|
|
(new Flarum\ServiceProvider)->register(Provider::class),
|
|
|
|
(new Flarum\Frontend('forum'))
|
|
->js(__DIR__ . '/js/dist/forum.js'),
|
|
|
|
(new Flarum\Routes('api'))
|
|
->get('blomstra/search', 'blomstra.search', Api\Controllers\SearchController::class),
|
|
|
|
(new Flarum\Console)
|
|
->command(Commands\RebuildDocumentsCommand::class)
|
|
];
|