CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.1.2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS
SSH

Download ZIP

Backend/ClientRoutes.php

17lines · modecode

1<?php
2
3namespace CloudFlare\Plugin\Backend;
4
5class ClientRoutes
6{
7 public static $routes = array(
8 'zones' => array(
9 'class' => 'CloudFlare\Plugin\Backend\ClientActions',
10 'methods' => array(
11 'GET' => array(
12 'function' => 'getZonesReturnMagentoZone'
13 )
14 )
15 )
16 );
17}