mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 13:22:42 +01:00
Correct the handle URI for build steps
Summary: Fixes T9674. This was wrong to start with (URI is `/edit/X/`, not `/X/edit/`) but we have a new view page anyway. Test Plan: - Visited an exmaple URI in my browser. - Followed a build step link from "Authorized By: ..." in Drydock. Reviewers: joshuaspence, chad Reviewed By: chad Maniphest Tasks: T9674 Differential Revision: https://secure.phabricator.com/D14366
This commit is contained in:
parent
724f6ddda5
commit
1b8337871b
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ final class HarbormasterBuildStepPHIDType extends PhabricatorPHIDType {
|
||||||
$handle
|
$handle
|
||||||
->setName($name)
|
->setName($name)
|
||||||
->setFullName(pht('Build Step %d: %s', $id, $name))
|
->setFullName(pht('Build Step %d: %s', $id, $name))
|
||||||
->setURI("/harbormaster/step/{$id}/edit/");
|
->setURI("/harbormaster/step/view/{$id}/");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue