95 lines
3.1 KiB
PHP
95 lines
3.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Http\Routes\Dashboard;
|
|
|
|
use Illuminate\Contracts\Routing\Registrar;
|
|
|
|
/**
|
|
* This is the dashboard incident routes class.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
* @author Connor S. Parks <connor@connorvg.tv>
|
|
*/
|
|
class IncidentRoutes
|
|
{
|
|
/**
|
|
* Defines if these routes are for the browser.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public static $browser = true;
|
|
|
|
/**
|
|
* Define the dashboard incident routes.
|
|
*
|
|
* @param \Illuminate\Contracts\Routing\Registrar $router
|
|
*
|
|
* @return void
|
|
*/
|
|
public function map(Registrar $router)
|
|
{
|
|
$router->group([
|
|
'middleware' => ['auth'],
|
|
'namespace' => 'Dashboard',
|
|
'prefix' => 'dashboard/incidents',
|
|
], function (Registrar $router) {
|
|
$router->get('/', [
|
|
'as' => 'get:dashboard.incidents',
|
|
'uses' => 'IncidentController@showIncidents',
|
|
]);
|
|
|
|
$router->get('create', [
|
|
'as' => 'get:dashboard.incidents.create',
|
|
'uses' => 'IncidentController@showAddIncident',
|
|
]);
|
|
$router->post('create', [
|
|
'as' => 'post:dashboard.incidents.create',
|
|
'uses' => 'IncidentController@createIncidentAction',
|
|
]);
|
|
|
|
$router->get('{incident}', [
|
|
'as' => 'get:dashboard.incidents.edit',
|
|
'uses' => 'IncidentController@showEditIncidentAction',
|
|
]);
|
|
$router->post('{incident}', [
|
|
'as' => 'post:dashboard.incidents.edit',
|
|
'uses' => 'IncidentController@editIncidentAction',
|
|
]);
|
|
$router->delete('{incident}', [
|
|
'as' => 'delete:dashboard.incidents.delete',
|
|
'uses' => 'IncidentController@deleteIncidentAction',
|
|
]);
|
|
|
|
$router->get('{incident}/updates', [
|
|
'as' => 'get:dashboard.incidents.updates',
|
|
'uses' => 'IncidentController@showIncidentUpdates',
|
|
]);
|
|
$router->get('{incident}/updates/create', [
|
|
'as' => 'get:dashboard.incidents.updates.create',
|
|
'uses' => 'IncidentController@showCreateIncidentUpdateAction',
|
|
]);
|
|
$router->post('{incident}/updates/create', [
|
|
'as' => 'post:dashboard.incidents.updates.create',
|
|
'uses' => 'IncidentController@createIncidentUpdateAction',
|
|
]);
|
|
$router->get('{incident}/updates/{incident_update}', [
|
|
'as' => 'get:dashboard.incidents.updates.edit',
|
|
'uses' => 'IncidentController@showEditIncidentUpdateAction',
|
|
]);
|
|
$router->post('{incident}/updates/{incident_update}', [
|
|
'as' => 'post:dashboard.incidents.updates.edit',
|
|
'uses' => 'IncidentController@editIncidentUpdateAction',
|
|
]);
|
|
});
|
|
}
|
|
}
|