Skip to content

Commit 4372776

Browse files
committed
Improve PR
1 parent 0ba4767 commit 4372776

File tree

10 files changed

+7
-92
lines changed

10 files changed

+7
-92
lines changed

app/code/Magento/LoginAsCustomer/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ The Magento_LoginAsCustomer module creates the `login_as_customer` table in the
88

99
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
1010

11-
## Extensibility
12-
13-
Extension developers can interact with the Magento_LoginAsCustomer module. For more information about the Magento extension mechanism, see [Magento plugins](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).
14-
15-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomer module.
16-
1711
## Additional information
1812

1913
This module is a part of Login As Customer feature.

app/code/Magento/LoginAsCustomerAdminUi/README.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,15 @@
22

33
This module provides UI for Admin Panel for Login As Customer functionality.
44

5-
## Installation
6-
7-
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
8-
9-
## Extensibility
10-
11-
Extension developers can interact with the Magento_LoginAsCustomerAdminUi module. For more information about the Magento extension mechanism, see [Magento plugins](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).
12-
135
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerAdminUi module.
146

157
### Layouts
168

179
This module introduces the following layouts in the `view/adminhtml/layout` directory:
18-
- `adminhtml_order_shipment_view`
19-
- `customer_index_edit`
2010
- `loginascustomer_confirmation_popup`
21-
- `sales_order_creditmemo_view`
22-
- `sales_order_invoice_view`
23-
- `sales_order_view`
2411

2512
For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html).
2613

27-
### UI components
28-
29-
This module extends ui components. The configuration files located in the directory `view/adminhtml/ui_component`:
30-
- `customer_form`
31-
32-
For information about a UI component in Magento 2, see [Overview of UI components](http://devdocs.magento.com/guides/v2.4/ui_comp_guide/bk-ui_comps.html).
33-
3414
## Additional information
3515

3616
This module is a part of Login As Customer feature.

app/code/Magento/LoginAsCustomerApi/README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,11 @@
22

33
This module provides API for ability to login into customer account for an admin user.
44

5-
## Installation
6-
7-
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
8-
9-
## Extensibility
10-
11-
Extension developers can interact with the Magento_LoginAsCustomerApi module. For more information about the Magento extension mechanism, see [Magento plugins](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).
12-
13-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerApi module.
14-
155
### Public APIs
166

7+
- `\Magento\LoginAsCustomerApi\Api\Data\AuthenticationDataInterface`:
8+
- contains authentication data
9+
1710
- `\Magento\LoginAsCustomerApi\Api\DataAuthenticationDataInterface`:
1811
- authentication data
1912

app/code/Magento/LoginAsCustomerAssistance/README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,12 @@ The Magento_LoginAsCustomerAssistance module creates the `login_as_customer_assi
88

99
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
1010

11-
## Extensibility
12-
13-
Extension developers can interact with the Magento_LoginAsCustomerAssistance module. For more information about the Magento extension mechanism, see [Magento plugins](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).
14-
15-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerAssistance module.
16-
1711
### Layouts
1812

19-
This module introduces the following layouts in the `view/adminhtml/layout` and `view/frontend/layout` directories:
13+
This module introduces the following layouts in the `view/adminhtml/layout` directory:
2014
- `view/adminhtml/layout`:
2115
- `loginascustomer_confirmation_popup`
22-
- `view/frontend/layout`:
23-
- `customer_account_create`
24-
- `customer_account_edit`
25-
16+
2617
For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html).
2718

2819
### UI components

app/code/Magento/LoginAsCustomerFrontendUi/README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,10 @@
22

33
This module provides UI for Storefront for Login As Customer functionality.
44

5-
## Extensibility
6-
7-
Extension developers can interact with the Magento_LoginAsCustomerFrontendUi module. For more information about the Magento extension mechanism, see [Magento plugins](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).
8-
9-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerFrontendUi module.
10-
115
### Layouts
126

137
This module introduces the following layouts in the `view/frontend/layout` directory:
148
- `loginascustomer_login_index`
15-
- `default`
169

1710
For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html).
1811

app/code/Magento/LoginAsCustomerGraphQl/README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Magento_LoginAsCustomerGraphQl module
22

3-
This module provides flexible login as a customer so a merchant or merchant admin can log into an end customer's account to assist them with their account.
3+
This module provides flexible login as a customer using GraphQl so a merchant or merchant admin can log into an end customer's account to assist them with their account.
44

55
## Installation
66

@@ -13,12 +13,6 @@ Before installing this module, note that the Magento_GroupedProductGraphQl is de
1313

1414
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
1515

16-
## Extensibility
17-
18-
Extension developers can interact with the Magento_LoginAsCustomerApi module. For more information about the Magento extension mechanism, see [Magento plugins](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).
19-
20-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerApi module.
21-
2216
## Additional information
2317

2418
This module is a part of Login As Customer feature.

app/code/Magento/LoginAsCustomerLog/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ The Magento_LoginAsCustomerLog module creates the `magento_login_as_customer_log
88

99
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
1010

11-
## Extensibility
12-
13-
Extension developers can interact with the Magento_LoginAsCustomerLog module. For more information about the Magento extension mechanism, see [Magento plugins](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).
14-
15-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerLog module.
16-
1711
### Layouts
1812

1913
This module introduces the following layouts in the `view/adminhtml/layout` directory:

app/code/Magento/LoginAsCustomerPageCache/README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
# Magento_LoginAsCustomerPageCache module
22

3-
This module provides adaptation to PageCache functionality for Login as Customer functionality.
4-
5-
## Installation
6-
7-
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
8-
9-
## Extensibility
10-
11-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerPageCache module.
3+
This module provides adaptation to PageCache functionality for Login as Customer functionality.
124

135
## Additional information
146

app/code/Magento/LoginAsCustomerQuote/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22

33
The Magento_LoginAsCustomerQuote module is responsible for communication between Magento_LoginAsCustomer and shopping cart state.
44

5-
## Installation
6-
7-
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
8-
9-
## Extensibility
10-
11-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerQuote module.
12-
135
## Additional information
146

157
This module is a part of Login As Customer feature.

app/code/Magento/LoginAsCustomerSales/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22

33
This module is responsible for communication between Magento_LoginAsCustomer and order placement.
44

5-
## Installation
6-
7-
For information about a module installation in Magento 2, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html).
8-
9-
## Extensibility
10-
11-
[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_LoginAsCustomerSales module.
12-
135
## Additional information
146

157
This module is a part of Login As Customer feature.

0 commit comments

Comments
 (0)