Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93214415
PhabricatorDoorkeeperApplication.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
Wed, Nov 27, 02:04
Size
724 B
Mime Type
text/x-php
Expires
Fri, Nov 29, 02:04 (2 d)
Engine
blob
Format
Raw Data
Handle
22597055
Attached To
rPH Phabricator
PhabricatorDoorkeeperApplication.php
View Options
<?php
final
class
PhabricatorDoorkeeperApplication
extends
PhabricatorApplication
{
public
function
canUninstall
()
{
return
false
;
}
public
function
isLaunchable
()
{
return
false
;
}
public
function
getName
()
{
return
pht
(
'Doorkeeper'
);
}
public
function
getFontIcon
()
{
return
'fa-recycle'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Connect to Other Software'
);
}
public
function
getRemarkupRules
()
{
return
array
(
new
DoorkeeperRemarkupRuleAsana
(),
new
DoorkeeperRemarkupRuleJIRA
(),
);
}
public
function
getRoutes
()
{
return
array
(
'/doorkeeper/'
=>
array
(
'tags/'
=>
'DoorkeeperTagsController'
,
),
);
}
}
Event Timeline
Log In to Comment