* caching added to nightly config
* routes for getting nightly config data
This commit is contained in:
@@ -12,6 +12,8 @@ return [
|
||||
App\Action\CiExecutorAction::class => App\Action\CiExecutorFactory::class,
|
||||
App\Action\JcatPackageAction::class => App\Action\JcatPackageFactory::class,
|
||||
App\Action\CiStreamAction::class => App\Action\CiStreamFactory::class,
|
||||
App\Action\NightlyByNodesAction::class => App\Action\NightlyByNodesFactory::class,
|
||||
App\Action\NightlyByStreamsAction::class => App\Action\NightlyByStreamsFactory::class,
|
||||
App\Action\HomePageAction::class => App\Action\HomePageFactory::class,
|
||||
],
|
||||
],
|
||||
@@ -72,5 +74,17 @@ return [
|
||||
'middleware' => App\Action\CiStreamAction::class,
|
||||
'allowed_methods' => ['GET'],
|
||||
],
|
||||
[
|
||||
'name' => 'api.nightly-by-nodes',
|
||||
'path' => '/api/nightly-by-nodes',
|
||||
'middleware' => App\Action\NightlyByNodesAction::class,
|
||||
'allowed_methods' => ['GET'],
|
||||
],
|
||||
[
|
||||
'name' => 'api.nightly-by-streams',
|
||||
'path' => '/api/nightly-by-streams',
|
||||
'middleware' => App\Action\NightlyByStreamsAction::class,
|
||||
'allowed_methods' => ['GET'],
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user