-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.php
27 lines (21 loc) · 916 Bytes
/
api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
use Illuminate\Http\Request;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::group(['middleware' => 'auth:api', 'namespace' => 'Api'], function() {
Route::apiResource('domain', 'DomainController')
->only(['index', 'store', 'show', 'destroy']);
Route::apiResource('domain/{domainId}/email', 'EmailController')
->only(['index', 'store', 'show', 'destroy']);
Route::apiResource('domain/{domainId}/email/{emailId}/message', 'MessageController')
->parameters(['message' => 'messageId'])
->only(['index', 'store', 'show']);
});