Super early base implementation of notifications from daemon

This commit is contained in:
Dane Everitt 2016-10-14 16:20:24 -04:00
parent c989dd0cc2
commit 63058d8c8e
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 95 additions and 0 deletions

View file

@ -40,6 +40,11 @@ class RemoteRoutes {
'as' => 'remote.install',
'uses' => 'Remote\RemoteController@postInstall'
]);
$router->post('event', [
'as' => 'remote.event',
'uses' => 'Remote\RemoteController@event'
]);
});
}