Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F113047435
PhabricatorSendGridConfigOptions.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, May 14, 14:40
Size
619 B
Mime Type
text/x-php
Expires
Fri, May 16, 14:40 (2 d)
Engine
blob
Format
Raw Data
Handle
26180286
Attached To
rPH Phabricator
PhabricatorSendGridConfigOptions.php
View Options
<?php
final
class
PhabricatorSendGridConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Integration with SendGrid'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure SendGrid integration.'
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'sendgrid.api-user'
,
'string'
,
null
)
->
setLocked
(
true
)
->
setDescription
(
pht
(
'SendGrid API username.'
)),
$this
->
newOption
(
'sendgrid.api-key'
,
'string'
,
null
)
->
setMasked
(
true
)
->
setDescription
(
pht
(
'SendGrid API key.'
)),
);
}
}
Event Timeline
Log In to Comment