mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
065df01f65
Summary: Uses modern methods in Slowvote, adds appmenu, consistent create into Badges Test Plan: View Poll list, new poll, edit poll, vote in poll. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T9690 Differential Revision: https://secure.phabricator.com/D14592
10 lines
238 B
PHP
10 lines
238 B
PHP
<?php
|
|
|
|
abstract class PhabricatorSlowvoteController extends PhabricatorController {
|
|
|
|
public function buildApplicationMenu() {
|
|
return $this->newApplicationMenu()
|
|
->setSearchEngine(new PhabricatorSlowvoteSearchEngine());
|
|
}
|
|
|
|
}
|