Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92704377
PhabricatorApplicationFeed.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 22, 23:08
Size
654 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 23:08 (2 d)
Engine
blob
Format
Raw Data
Handle
22480732
Attached To
rPH Phabricator
PhabricatorApplicationFeed.php
View Options
<?php
final
class
PhabricatorApplicationFeed
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/feed/'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Review activity.'
);
}
public
function
getIconName
()
{
return
'feed'
;
}
public
function
canUninstall
()
{
return
false
;
}
public
function
getRoutes
()
{
return
array
(
'/feed/'
=>
array
(
'public/'
=>
'PhabricatorFeedPublicStreamController'
,
'(?:(?P<filter>[^/]+)/)?'
=>
'PhabricatorFeedMainController'
,
),
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_COMMUNICATION
;
}
}
Event Timeline
Log In to Comment