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 33
44namespace Umbraco . Cms . Integrations . OAuthProxy . Controllers
55{
6- [ ApiController ]
7- public class ShopifyComplianceController : Controller
6+ [ ApiController ]
7+ public class ShopifyComplianceController : Controller
88 {
99 /// <summary>
1010 /// Handles customer data requests from Shopify
1111 /// </summary>
1212 /// <returns></returns>
1313 [ HttpPost ]
1414 [ Route ( "/shopify-compliance/v1/customer/data-request" ) ]
15- [ SignatureValidation ]
16- public IActionResult CustomerDataRequest ( ) => Ok ( ) ;
15+ [ SignatureValidation ]
16+ public IActionResult CustomerDataRequest ( ) => Ok ( ) ;
1717
1818 /// <summary>
1919 /// Handles customer data erasure requests from Shopify
2020 /// </summary>
2121 /// <returns></returns>
2222 [ HttpPost ]
2323 [ Route ( "/shopify-compliance/v1/customer/data-redact" ) ]
24- [ SignatureValidation ]
25- public IActionResult CustomerDataRedact ( ) => Ok ( ) ;
24+ [ SignatureValidation ]
25+ public IActionResult CustomerDataRedact ( ) => Ok ( ) ;
2626
2727 /// <summary>
2828 /// Handles shop data erasure requests from Shopify
2929 /// </summary>
3030 /// <returns></returns>
3131 [ HttpPost ]
3232 [ Route ( "/shopify-compliance/v1/shop/data-redact" ) ]
33- [ SignatureValidation ]
34- public IActionResult ShopDataRedact ( ) => Ok ( ) ;
33+ [ SignatureValidation ]
34+ public IActionResult ShopDataRedact ( ) => Ok ( ) ;
3535 }
3636}
You can’t perform that action at this time.
0 commit comments