미디어위키:Gadget-SysopPresentCheck.js: 두 판 사이의 차이
잔글 (초기 템플릿으로 롤백) |
잔글편집 요약 없음 |
||
5번째 줄: | 5번째 줄: | ||
function runJobs () { | function runJobs () { | ||
console.log("출력 체크, 출첵 시스템 개발 예정"); | console.log("출력 체크, 출첵 시스템 개발 예정"); | ||
fetch("https://dev.libertygame.work/index.php/%EB%A6%AC%EB%B2%84%ED%8B%B0%EA%B2%8C%EC%9E%84:%EA%B4%80%EB%A6%AC%EB%8B%A8/%EC%B6%9C%EC%84%9D%EC%B2%B4%ED%81%AC?action=raw") | |||
.then(function (result){ | |||
return result.json(); | |||
}).then(function(result){ | |||
console.log(result); | |||
}); | |||
} | } | ||
$(runJobs); | $(runJobs); |
2024년 5월 14일 (화) 16:26 판
/** 관리단 출석체크 시스템
* [[리버티게임:관리단/출석체크]]와 동기화됨
* 작성자: [[사용자:Senouis]]
**/
function runJobs () {
console.log("출력 체크, 출첵 시스템 개발 예정");
fetch("https://dev.libertygame.work/index.php/%EB%A6%AC%EB%B2%84%ED%8B%B0%EA%B2%8C%EC%9E%84:%EA%B4%80%EB%A6%AC%EB%8B%A8/%EC%B6%9C%EC%84%9D%EC%B2%B4%ED%81%AC?action=raw")
.then(function (result){
return result.json();
}).then(function(result){
console.log(result);
});
}
$(runJobs);