mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
49c40d209d
Summary: Features! - Giving tokens. - Taking tokens back. - Not giving tokens. Test Plan: See screenshots. Reviewers: chad, vrana Reviewed By: chad CC: aran, btrahan Maniphest Tasks: T2541 Differential Revision: https://secure.phabricator.com/D4964
15 lines
307 B
PHP
15 lines
307 B
PHP
<?php
|
|
|
|
final class PhabricatorTokenCount extends PhabricatorTokenDAO {
|
|
|
|
protected $objectPHID;
|
|
protected $tokenCount;
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_IDS => self::IDS_MANUAL,
|
|
self::CONFIG_TIMESTAMPS => false,
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
}
|