mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 13:08:18 +01:00
b1703c8801
Summary: Ref T12819. Mostly straightforward, with a couple of minor query modernization things. Test Plan: Indexed and searched for posts and blogs. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12819 Differential Revision: https://secure.phabricator.com/D18565
18 lines
288 B
PHP
18 lines
288 B
PHP
<?php
|
|
|
|
final class PhamePostFerretEngine
|
|
extends PhabricatorFerretEngine {
|
|
|
|
public function getApplicationName() {
|
|
return 'phame';
|
|
}
|
|
|
|
public function getScopeName() {
|
|
return 'post';
|
|
}
|
|
|
|
public function newSearchEngine() {
|
|
return new PhamePostSearchEngine();
|
|
}
|
|
|
|
}
|