Added UI for testing healthchecks

Also added close button on settings modals and test more info modals
This commit is contained in:
Henry Whitaker
2020-08-15 15:38:20 +01:00
parent 532837621f
commit 30ead5e82a
5 changed files with 65 additions and 20 deletions

View File

@@ -135,19 +135,4 @@ class SettingsController extends Controller
{
return SettingsHelper::getConfig();
}
/**
* Trigger a test of all notification agents
*
* @return JsonResponse
*/
public function testNotification()
{
SettingsHelper::testNotification();
return response()->json([
'method' => 'test notificaiton agents'
], 200);
}
}