66 lines
1.8 KiB
PHP
66 lines
1.8 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 subscriber routes class.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
* @author Connor S. Parks <connor@connorvg.tv>
|
|
*/
|
|
class SubscriberRoutes
|
|
{
|
|
/**
|
|
* Defines if these routes are for the browser.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public static $browser = true;
|
|
|
|
/**
|
|
* Define the dashboard subscriber routes.
|
|
*
|
|
* @param \Illuminate\Contracts\Routing\Registrar $router
|
|
*
|
|
* @return void
|
|
*/
|
|
public function map(Registrar $router)
|
|
{
|
|
$router->group([
|
|
'middleware' => ['auth'],
|
|
'namespace' => 'Dashboard',
|
|
'prefix' => 'dashboard/subscribers',
|
|
], function (Registrar $router) {
|
|
$router->get('/', [
|
|
'as' => 'get:dashboard.subscribers',
|
|
'uses' => 'SubscriberController@showSubscribers',
|
|
]);
|
|
|
|
$router->get('create', [
|
|
'as' => 'get:dashboard.subscribers.create',
|
|
'uses' => 'SubscriberController@showAddSubscriber',
|
|
]);
|
|
$router->post('create', [
|
|
'as' => 'post:dashboard.subscribers.create',
|
|
'uses' => 'SubscriberController@createSubscriberAction',
|
|
]);
|
|
|
|
$router->delete('{subscriber}/delete', [
|
|
'as' => 'delete:dashboard.subscribers.delete',
|
|
'uses' => 'SubscriberController@deleteSubscriberAction',
|
|
]);
|
|
});
|
|
}
|
|
}
|