snipe-it/app/Observers/SettingObserver.php
Martin Meredith f403db274a (develop) Fix asset auto-incrementation (#6806)
* Fix auto-increment not updating

This is due to the addition of caching for settings.  If we're not
explicitly saving the Settings model, then the cache isn't getting
updated, causing the asset tag auto-increment to get an old cached
version with the wrong number

* Move Setting cache clear to an observer
2019-03-13 10:58:35 -07:00

24 lines
401 B
PHP

<?php
namespace App\Observers;
use App\Models\Setting;
use Illuminate\Support\Facades\Cache;
class SettingObserver
{
/**
* Listen to the Setting saved event.
*
* @param Setting $setting
*
* @return void
*/
public function saved(Setting $setting)
{
Cache::forget(Setting::APP_SETTINGS_KEY);
Cache::forget(Setting::SETUP_CHECK_KEY);
}
}