Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101653784
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, Feb 12, 12:00
Size
593 B
Mime Type
text/x-php
Expires
Fri, Feb 14, 12:00 (2 d)
Engine
blob
Format
Raw Data
Handle
24206650
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
)
->
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