1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-22 02:08:47 +02:00
phorge-phorge/src/applications/config/option/PhabricatorSendGridConfigOptions.php

25 lines
593 B
PHP
Raw Normal View History

<?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.')),
);
}
}