add checkin_webhooks table

This commit is contained in:
shibafu
2020-07-19 18:39:19 +09:00
parent 034a47cd25
commit 5926c6e640
5 changed files with 86 additions and 0 deletions

View File

@@ -21,3 +21,5 @@ Route::middleware('auth')->group(function () {
Route::post('/likes', 'Api\\LikeController@store');
Route::delete('/likes/{id}', 'Api\\LikeController@destroy');
});
Route::post('/webhooks/checkin/{webhook}', 'Api\\WebhookController@checkin');