Page MenuHomec4science

PhabricatorSendGridConfigOptions.php
No OneTemporary

File Metadata

Created
Fri, Jan 24, 10:32

PhabricatorSendGridConfigOptions.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 getFontIcon() {
return 'fa-send-o';
}
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