We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ffc2a1 commit 84c3f54Copy full SHA for 84c3f54
src/applications/tokens/controller/PhabricatorTokenController.php
@@ -7,10 +7,20 @@ protected function buildSideNav() {
7
$nav = new AphrontSideNavFilterView();
8
$nav->setBaseURI(new PhutilURI($this->getApplicationURI()));
9
10
+ $nav->addLabel(pht('Tokens'));
11
$nav->addFilter('given/', pht('Tokens Given'));
12
$nav->addFilter('leaders/', pht('Leader Board'));
13
14
return $nav;
15
}
16
17
+ public function buildApplicationMenu() {
18
+ return $this->buildSideNav()->getMenu();
19
+ }
20
+
21
+ public function buildApplicationCrumbs() {
22
+ $crumbs = parent::buildApplicationCrumbs();
23
+ return $crumbs;
24
25
26
src/applications/tokens/controller/PhabricatorTokenGivenController.php
@@ -72,6 +72,7 @@ public function processRequest() {
72
array(
73
'title' => $title,
74
'device' => true,
75
+ 'dust' => true,
76
));
77
78
0 commit comments