사용자:Senouis/관리용: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
>Bureaucrat 잔글 (→게임 대문 저자 보호 처리) |
>Bureaucrat 잔글 (→게임 대문 저자 보호 처리) |
||
14번째 줄: | 14번째 줄: | ||
MIT License | MIT License | ||
*/ | */ | ||
var titlelist = []; | |||
for (var title of titlelist) { | |||
var params = { | var params = { | ||
action: 'protect', | action: 'protect', | ||
title: | title: title, | ||
protections: 'edit=author|move=author', | protections: 'edit=author|move=author', | ||
expiry: 'infinite', | expiry: 'infinite', | ||
27번째 줄: | 28번째 줄: | ||
console.log( data ); | console.log( data ); | ||
} ); | } ); | ||
} | |||
</syntaxhighlight> | </syntaxhighlight> |
2024년 2월 29일 (목) 22:13 판
베타 서버 사무관
현재 사용자:Senouis와 동일인입니다.
게임 대문 저자 보호 처리
/*
protect.js
MediaWiki API Demos
Demo of `Protect` module: Demo to change the edit protection
level of a given page.
MIT License
*/
var titlelist = [];
for (var title of titlelist) {
var params = {
action: 'protect',
title: title,
protections: 'edit=author|move=author',
expiry: 'infinite',
format: 'json'
},
api = new mw.Api();
api.postWithToken( 'csrf', params ).done( function ( data ) {
console.log( data );
} );
}