mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
277bce5638
Summary: Depends on D20713. Ref T13366. When a payment account establishes a relationship with a merchant by creating a cart or subscription, create an edge to give the merchant access to view the payment account. Also, migrate all existing subscriptions and carts to write these edges. This aims at straightening out Phortune permissions, which are currently a bit wonky on a couple of dimensions. See T13366 for detailed discussion. Test Plan: - Created and edited carts/subscriptions, saw edges write. - Ran migrations, saw edges write. Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T13366 Differential Revision: https://secure.phabricator.com/D20715
10 lines
279 B
PHP
10 lines
279 B
PHP
<?php
|
|
|
|
$edge_type = PhortuneAccountHasMerchantEdgeType::EDGECONST;
|
|
|
|
$table = new PhortuneCart();
|
|
foreach (new LiskMigrationIterator($table) as $cart) {
|
|
id(new PhabricatorEdgeEditor())
|
|
->addEdge($cart->getAccountPHID(), $edge_type, $cart->getMerchantPHID())
|
|
->save();
|
|
}
|