Skip to content

Commit

Permalink
CC-32215: Agent Assist in Merchant Portal (#10720)
Browse files Browse the repository at this point in the history
CC-32215 Merchant Portal Agent Assist feature.
  • Loading branch information
dmiseev committed Feb 6, 2024
1 parent ba2d2b1 commit 2e2511d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@
<transfer name="MerchantUser">
</transfer>

<transfer name="MerchantUserCriteria">
</transfer>

</transfers>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

/**
* Copyright © 2016-present Spryker Systems GmbH. All rights reserved.
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/

namespace Spryker\Zed\SecurityMerchantPortalGuiExtension\Dependency\Plugin;

use Generated\Shared\Transfer\MerchantUserCriteriaTransfer;

/**
* Use this plugin to expand `MerchantUserCriteriaTransfer` to find a merchant user for security user creation.
*/
interface MerchantUserCriteriaExpanderPluginInterface
{
/**
* Specification:
* - Expands `MerchantUserCriteriaTransfer`.
*
* @api
*
* @param \Generated\Shared\Transfer\MerchantUserCriteriaTransfer $merchantUserCriteriaTransfer
*
* @return \Generated\Shared\Transfer\MerchantUserCriteriaTransfer
*/
public function expand(MerchantUserCriteriaTransfer $merchantUserCriteriaTransfer): MerchantUserCriteriaTransfer;
}

0 comments on commit 2e2511d

Please sign in to comment.