mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 20:52:43 +01:00
315d857a8a
Summary: Depends on D19798. Ref T13216. This puts at least a basic UI on top of sync logs. Test Plan: Viewed logs from the web UI and exported data. Note that these syncs are somewhat simulated since I my local cluster is somewhat-faked (i.e., not actually multiple machines). {F5995899} Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13216 Differential Revision: https://secure.phabricator.com/D19799
17 lines
431 B
PHP
17 lines
431 B
PHP
<?php
|
|
|
|
final class DiffusionSyncLogListController
|
|
extends DiffusionLogController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new DiffusionSyncLogSearchEngine())
|
|
->setController($this)
|
|
->buildResponse();
|
|
}
|
|
|
|
protected function buildApplicationCrumbs() {
|
|
return parent::buildApplicationCrumbs()
|
|
->addTextCrumb(pht('Sync Logs'), $this->getApplicationURI('synclog/'));
|
|
}
|
|
|
|
}
|