mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 11:16:05 +01:00
10 lines
197 B
PHP
10 lines
197 B
PHP
<?php
|
|
|
|
Route::api(['version' => 'v1', 'prefix' => 'api'], function()
|
|
{
|
|
|
|
Route::get('components', 'ApiController@getComponents');
|
|
Route::get('components/{id}', 'ApiController@getComponent');
|
|
|
|
});
|