Completed
Push — master ( a42355...ad27f2 )
by Adam
12:14 queued 04:48
created
app/Http/routes.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::get('/', function () {
14
+Route::get('/', function() {
15 15
     return view('welcome');
16 16
 });
17 17
 
18
-Route::get('/auth/login', function () {
18
+Route::get('/auth/login', function() {
19 19
     return 'No tens acces a la API';
20 20
 });
21 21
 
22
-Route::group(['api' => 'api', 'middleware' => 'throttle:5,10'], function () {
22
+Route::group(['api' => 'api', 'middleware' => 'throttle:5,10'], function() {
23 23
     Route::get('task/{id}/tag', 'TagController@index');
24 24
     Route::resource('task', 'TaskController');
25 25
     Route::resource('tag', 'TagController');
Please login to merge, or discard this patch.