We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed0347 commit 2931c74Copy full SHA for 2931c74
src/Repositories/EloquentTaskRepository.php
@@ -212,8 +212,13 @@ public function execute($id)
212
*/
213
public function import($input)
214
{
215
+ Cache::forget('totem.tasks.all');
216
+ Cache::forget('totem.tasks.active');
217
+
218
collect(json_decode(array_get($input, 'content')))
219
->each(function ($data) {
220
+ Cache::forget('totem.task.'.$data->id);
221
222
$task = $this->find($data->id);
223
224
if (is_null($task)) {
0 commit comments