<?php
/**
* Perforce Swarm
*
* @copyright 2012 Perforce Software. All rights reserved.
* @license Please see LICENSE.txt in top-level folder of this distribution.
* @version <release>/<patch>
*/
return array(
'activity' => array(
'ignored_users' => array('git-fusion-user')
),
'router' => array(
'routes' => array(
'activity' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/activity[/]',
'defaults' => array(
'controller' => 'Activity\Controller\Index',
'action' => 'index',
),
),
),
'activity-rss' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/activity/rss[/]',
'defaults' => array(
'controller' => 'Activity\Controller\Index',
'action' => 'index',
'rss' => true
),
),
),
'activity-stream' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/activity/streams/:stream',
'defaults' => array(
'controller' => 'Activity\Controller\Index',
'action' => 'index'
),
),
),
'activity-stream-rss' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/activity/streams/:stream/rss[/]',
'defaults' => array(
'controller' => 'Activity\Controller\Index',
'action' => 'index',
'rss' => true
),
),
),
'add-activity' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/activity/add[/]',
'defaults' => array(
'controller' => 'Activity\Controller\Index',
'action' => 'add',
),
),
),
),
),
'console' => array(
'router' => array(
'routes' => array(
'activity-delete' => array(
'options' => array(
'route' => 'activity delete [-m=n] [-i=n]',
'defaults' => array(
'controller' => 'Activity\Controller\Index',
'action' => 'delete'
)
)
)
)
)
),
'controllers' => array(
'invokables' => array(
'Activity\Controller\Index' => 'Activity\Controller\IndexController'
),
),
'view_helpers' => array(
'invokables' => array(
'activity' => 'Activity\View\Helper\Activity'
),
),
);
# |
Change |
User |
Description |
Committed |
|
#1
|
18334 |
Liz Lam |
initial add of jambox |
|
|