1 | <?php |
||
3 | class SupportedAddonsApiController extends ApiController |
||
4 | { |
||
5 | private static $allowed_actions = [ |
||
|
|||
6 | 'index', |
||
7 | ]; |
||
8 | |||
9 | /** |
||
10 | * Set the default cache lifetime in seconds. Only used outside of "dev" environments. |
||
11 | * |
||
12 | * Set to 1 week |
||
13 | * |
||
14 | * @config |
||
15 | * @var int |
||
16 | */ |
||
17 | private static $cache_age = 604800; |
||
18 | |||
19 | public function index() |
||
27 | } |
||
28 |