mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 11:12:42 +01:00
8769759c15
Summary: Ref T3663. There's no data recorded in this table yet, but add the UI and controller for it. Edits and such will eventually go here. Test Plan: Clicked "View History" on a project, got an empty but non-broken page. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T3663 Differential Revision: https://secure.phabricator.com/D6785
10 lines
209 B
PHP
10 lines
209 B
PHP
<?php
|
|
|
|
final class ReleephProjectTransactionQuery
|
|
extends PhabricatorApplicationTransactionQuery {
|
|
|
|
public function getTemplateApplicationTransaction() {
|
|
return new ReleephProjectTransaction();
|
|
}
|
|
|
|
}
|