mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-16 01:31:06 +01:00
dc8b2ae6d2
Summary: Ref T1191. Notable: - `HeraldApplyTranscript` is not actually a DAO and has no table (it is serialized into HeraldTranscript). Test Plan: Down to fewer than 300 issues. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10588
24 lines
503 B
PHP
24 lines
503 B
PHP
<?php
|
|
|
|
final class HeraldRuleEdit extends HeraldDAO {
|
|
|
|
protected $editorPHID;
|
|
protected $ruleID;
|
|
protected $ruleName;
|
|
protected $action;
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_COLUMN_SCHEMA => array(
|
|
'ruleName' => 'text255',
|
|
'action' => 'text32',
|
|
),
|
|
self::CONFIG_KEY_SCHEMA => array(
|
|
'ruleID' => array(
|
|
'columns' => array('ruleID', 'dateCreated'),
|
|
),
|
|
),
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
}
|