Super early base implementation of notifications from daemon
This commit is contained in:
parent
c989dd0cc2
commit
63058d8c8e
3 changed files with 95 additions and 0 deletions
|
@ -40,6 +40,11 @@ class RemoteRoutes {
|
|||
'as' => 'remote.install',
|
||||
'uses' => 'Remote\RemoteController@postInstall'
|
||||
]);
|
||||
|
||||
$router->post('event', [
|
||||
'as' => 'remote.event',
|
||||
'uses' => 'Remote\RemoteController@event'
|
||||
]);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue