File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/Umbraco.Cms.Integrations.OAuthProxy/Controllers Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 3
3
4
4
namespace Umbraco . Cms . Integrations . OAuthProxy . Controllers
5
5
{
6
- [ ApiController ]
7
- public class ShopifyComplianceController : Controller
6
+ [ ApiController ]
7
+ public class ShopifyComplianceController : Controller
8
8
{
9
9
/// <summary>
10
10
/// Handles customer data requests from Shopify
11
11
/// </summary>
12
12
/// <returns></returns>
13
13
[ HttpPost ]
14
14
[ Route ( "/shopify-compliance/v1/customer/data-request" ) ]
15
- [ SignatureValidation ]
16
- public IActionResult CustomerDataRequest ( ) => Ok ( ) ;
15
+ [ SignatureValidation ]
16
+ public IActionResult CustomerDataRequest ( ) => Ok ( ) ;
17
17
18
18
/// <summary>
19
19
/// Handles customer data erasure requests from Shopify
20
20
/// </summary>
21
21
/// <returns></returns>
22
22
[ HttpPost ]
23
23
[ Route ( "/shopify-compliance/v1/customer/data-redact" ) ]
24
- [ SignatureValidation ]
25
- public IActionResult CustomerDataRedact ( ) => Ok ( ) ;
24
+ [ SignatureValidation ]
25
+ public IActionResult CustomerDataRedact ( ) => Ok ( ) ;
26
26
27
27
/// <summary>
28
28
/// Handles shop data erasure requests from Shopify
29
29
/// </summary>
30
30
/// <returns></returns>
31
31
[ HttpPost ]
32
32
[ Route ( "/shopify-compliance/v1/shop/data-redact" ) ]
33
- [ SignatureValidation ]
34
- public IActionResult ShopDataRedact ( ) => Ok ( ) ;
33
+ [ SignatureValidation ]
34
+ public IActionResult ShopDataRedact ( ) => Ok ( ) ;
35
35
}
36
36
}
You can’t perform that action at this time.
0 commit comments