Merge branch '1.1'

This commit is contained in:
Graham Campbell
2015-08-03 22:26:02 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ class AuthRoutes
$router->post('login', [
'middleware' => ['guest', 'csrf', 'throttling:10,10'],
'as' => 'logout',
'as' => 'login',
'uses' => 'AuthController@postLogin',
]);

View File

@@ -47,6 +47,7 @@ class IncidentTableSeeder extends Seeder
[
'name' => 'Test Incident',
'message' => 'Something went wrong, oh noes.',
'status' => 1,
'component_id' => 0,
'scheduled_at' => null,
'visible' => 1,