Files
cachet-docker/app/routes/api.php

12 lines
401 B
PHP

<?php
Route::api(['version' => 'v1', 'prefix' => 'api'], function() {
Route::get('components', 'ApiController@getComponents');
Route::get('components/{id}', 'ApiController@getComponent');
Route::get('components/{id}/incidents', 'ApiController@getComponentIncidents');
Route::get('incidents', 'ApiController@getIncidents');
Route::get('incidents/{id}', 'ApiController@getIncident');
});