mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 05:12:41 +01:00
Fix Phortune Subscription high-security checkpoint URI
Summary: This URI is currently a little whack. Test Plan: - With MFA, clicked "Edit Subscription" on a subscription. - Clicked "Cancel". - Before: Sent to `/phortune/phortune/edit/...`, a 404. - After: Properly returned to subscription detail page. Reviewers: chad Reviewed By: chad Differential Revision: https://secure.phabricator.com/D15514
This commit is contained in:
parent
881785aba4
commit
c0cb52dd78
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ final class PhortuneSubscriptionEditController extends PhortuneController {
|
|||
id(new PhabricatorAuthSessionEngine())->requireHighSecuritySession(
|
||||
$viewer,
|
||||
$request,
|
||||
$this->getApplicationURI($subscription->getEditURI()));
|
||||
$subscription->getURI());
|
||||
$merchant = $subscription->getMerchant();
|
||||
$account = $subscription->getAccount();
|
||||
|
||||
|
|
Loading…
Reference in a new issue