Completed
Push — device-groups ( 631e51...794baa )
by Tony
03:38
created
app/Http/Controllers/DeviceGroupController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      */
77 77
     public function show($id)
78 78
     {
79
-        return redirect('devices/group=' . $id);
79
+        return redirect('devices/group='.$id);
80 80
     }
81 81
 
82 82
     /**
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -195,7 +195,8 @@
 block discarded – undo
195 195
         $user = \Auth::user();
196 196
         if (!is_null($user) && $user->isAdmin()) {
197 197
             return false;
198
-        } else {
198
+        }
199
+        else {
199 200
             return 'auth';
200 201
         }
201 202
     }
Please login to merge, or discard this patch.