rabin 6 년 전
부모
커밋
ea035161cd
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      buy/src/Data.php

+ 4 - 4
buy/src/Data.php

@@ -12,11 +12,11 @@ class Data extends Base
 
     public function checkLogin()
     {
-        //return $this->location('list');
+        //return $this->location('home');
         if ($this->user) {
-            //return $this->location('list');
+            //return $this->location('home');
         } else {
-            //return $this->location('auth');
+            return $this->location('auth');
         }
     }
 
@@ -24,7 +24,7 @@ class Data extends Base
     {
         //return $this->location('list');
         if ($this->user) {
-            return $this->location('list');
+            return $this->location('home');
         }
     }
 }