mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 09:22:40 +01:00
950076ec95
Summary: Port more settings. Test Plan: Looked at, edited settings. Reviewers: codeblock, btrahan Reviewed By: codeblock CC: aran Maniphest Tasks: T2255 Differential Revision: https://secure.phabricator.com/D4442
24 lines
593 B
PHP
24 lines
593 B
PHP
<?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.')),
|
|
);
|
|
}
|
|
|
|
}
|