mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
56bd762dd3
Summary: Fixes T10750. Files have some outdated cache/key code which prevents recording an edit history on file comments. Remove this ancient cruft. (Users must `bin/storage adjust` after upgrading to this patch to reap the benefits.) Test Plan: - Ran `bin/storage adjust`. - Edited a comment in Files. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10750 Differential Revision: https://secure.phabricator.com/D16312
10 lines
213 B
PHP
10 lines
213 B
PHP
<?php
|
|
|
|
final class PhabricatorFileTransactionComment
|
|
extends PhabricatorApplicationTransactionComment {
|
|
|
|
public function getApplicationTransactionObject() {
|
|
return new PhabricatorFileTransaction();
|
|
}
|
|
|
|
}
|