Page MenuHomec4science

PhabricatorFeedApplication.php
No OneTemporary

File Metadata

Created
Sat, Dec 28, 12:04

PhabricatorFeedApplication.php

<?php
final class PhabricatorFeedApplication extends PhabricatorApplication {
public function getBaseURI() {
return '/feed/';
}
public function getShortDescription() {
return pht('Review Recent Activity');
}
public function getIconName() {
return 'feed';
}
public function canUninstall() {
return false;
}
public function getRoutes() {
return array(
'/feed/' => array(
'public/' => 'PhabricatorFeedPublicStreamController',
'(?P<id>\d+)/' => 'PhabricatorFeedDetailController',
'(?:query/(?P<queryKey>[^/]+)/)?' => 'PhabricatorFeedListController',
),
);
}
}

Event Timeline