Skip to content

Commit b70576d

Browse files
committed
Update all search indexes
1 parent 8c8d0bd commit b70576d

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

PowerTools/PowerToolsController.php

+9-5
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,19 @@ private function getPHPInfo()
7878
}
7979

8080
/**
81-
* Rebuild the search index
81+
* Rebuild the search indexes
8282
* @return \Illuminate\Http\RedirectResponse
8383
*/
84-
public function rebuildSearchIndex()
84+
public function rebuildSearchIndexes()
8585
{
8686
return $this->doThing(
87-
function () { Artisan::call('search:update'); },
88-
'Search index rebuilt successfully',
89-
'Problem rebuilding your search index'
87+
function () {
88+
Search::indexes()->each(function ($index, $key) {
89+
Search::update($key);
90+
});
91+
},
92+
'Search indexes rebuilt successfully',
93+
'Problem rebuilding your search indexes'
9094
);
9195
}
9296

PowerTools/meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: PowerTools
2-
version: 1.6.4
3-
description: Rebuild your search index, cache & asset presets, see your PHP Info and your log
2+
version: 1.6.5
3+
description: Rebuild your search indexes, cache & asset presets, see your PHP Info and your log
44
url: https://github.com/edalzell/statamic-powertools
55
developer: Erin Dalzell
66
developer_url: https://github.com/edalzell

PowerTools/resources/views/widget.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<div class="form-group text-fieldtype width-100">
2121
<div class="field-inner">
2222
<label class="block">Search</label>
23-
<a href="{{ route('powertools.rebuild-search') }}" class="btn">Update Search Index</a>
23+
<a href="{{ route('powertools.rebuild-search') }}" class="btn">Update Search Indexes</a>
2424
</div>
2525
</div>
2626
<div class="form-group text-fieldtype width-100">

PowerTools/routes.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ routes:
99
as: logs
1010

1111
/rebuild-search:
12-
uses: rebuildSearchIndex
12+
uses: rebuildSearchIndexes
1313
as: powertools.rebuild-search
1414

1515
/clear-cache:

0 commit comments

Comments
 (0)