Manual:$wgGrantRiskGroups

This page is a translated version of the page Manual:$wgGrantRiskGroups and the translation is 50% complete.
利用者権限、アクセス制御、モニタリング: $wgGrantRiskGroups
Group grants by risk level.
導入されたバージョン:1.42.0 (Gerrit change 910822; git #183372c9)
除去されたバージョン:使用中
許容される値:(配列)
既定値:下記参照

詳細

Group grants by risk level. Keys are grant names (i.e. keys from $wgGrantPermissions ), values are GrantsInfo::RISK_* constants.

This classification is only informative; merely applying 'security' or 'internal' to a grant won't prevent it from being available. It's used to give guidance to users in various interfaces about the riskiness of the various grants.

既定値

$wgGrantRiskGroups = [
	'basic' => 'low',
	'editpage' => 'low',
	'createeditmovepage' => 'low',
	'editprotected' => 'vandalism',
	'patrol' => 'low',
	'uploadfile' => 'low',
	'uploadeditmovefile' => 'low',
	'sendemail' => 'security',
	'viewmywatchlist' => 'low',
	'editviewmywatchlist' => 'low',
	'editmycssjs' => 'security',
	'editmyoptions' => 'security',
	'editinterface' => 'vandalism',
	'editsiteconfig' => 'security',
	'rollback' => 'low',
	'blockusers' => 'vandalism',
	'delete' => 'vandalism',
	'viewdeleted' => 'vandalism',
	'viewrestrictedlogs' => 'security',
	'protect' => 'vandalism',
	'oversight' => 'security',
	'createaccount' => 'low',
	'mergehistory' => 'vandalism',
	'import' => 'security',
	'highvolume' => 'low',
	'privateinfo' => 'low',
];