mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
17 lines
403 B
PHP
17 lines
403 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSubscribersEditField
|
||
|
extends PhabricatorTokenizerEditField {
|
||
|
|
||
|
protected function newDatasource() {
|
||
|
return new PhabricatorMetaMTAMailableDatasource();
|
||
|
}
|
||
|
|
||
|
protected function newHTTPParameterType() {
|
||
|
// TODO: Implement a more expansive "Mailable" parameter type which
|
||
|
// accepts users or projects.
|
||
|
return new AphrontUserListHTTPParameterType();
|
||
|
}
|
||
|
|
||
|
}
|