Allow only some users to create Administrators.
一部のユーザでしか管理者を作成できないようにします。
In this example, only user ID:1 will be allowed to create administrators.
この例では、ユーザID:1のユーザに対しのみ、管理者の作成を許可します。
None
Head of all pages
JavaScript
$(function() {
if (ViewCustomize.context.user.id != 1) {
$('#user_admin').prop('disabled', true);
}
});
for user ID = 1
for user ID != 1