인증 토큰 '초기화' 문구를 '연장'으로 변경

This commit is contained in:
2018-11-08 16:01:01 +09:00
parent 5fdcffc97d
commit 16cc281a22
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ require(__dir__.'/../vendor/autoload.php');
<span id="slot_oauth_type"></span>
</td>
<td colspan="3">
<span id="slot_token_valid_until"></span>까지 유효<button type="button" id="expand_login_token">초기화</button></td>
<span id="slot_token_valid_until"></span>까지 유효<button type="button" id="expand_login_token">연장</button></td>
</tr>
<tr>
<th class="bg1"></th>
+2 -2
View File
@@ -17,7 +17,7 @@ $tokenValidUntil = RootDB::db()->queryFirstField('SELECT token_valid_until from
if(!$tokenValidUntil){
Json::die([
'result'=>false,
'reason'=>'초기화 가능한 로그인 상태가 아닙니다.'
'reason'=>'연장 가능한 로그인 상태가 아닙니다.'
]);
}
@@ -39,5 +39,5 @@ $session->logout();
Json::die([
'result'=>true,
'reason'=>'초기화 완료.'
'reason'=>'연장 완료.'
]);