Update LandingController, fix config_cache api check

pull/4360/head
Daniel Supernault 3 years ago
parent a0e299c28d
commit db2da84bec
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -33,7 +33,7 @@ class LandingController extends Controller
public function getDirectoryApi(Request $request)
{
abort_if(config('instance.landing.show_directory') == false, 404);
abort_if(config_cache('instance.landing.show_directory') == false, 404);
return DirectoryProfile::collection(
Profile::whereNull('domain')

Loading…
Cancel
Save