debian-mirror-gitlab/app/assets/javascripts/pages/admin/admin.js

34 lines
1,002 B
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-17 18:26:18 +05:30
import { refreshCurrentPage } from '../../lib/utils/url_utility';
2021-01-29 00:20:46 +05:30
function showDenylistType() {
if ($('input[name="denylist_type"]:checked').val() === 'file') {
$('.js-denylist-file').show();
$('.js-denylist-raw').hide();
2018-03-17 18:26:18 +05:30
} else {
2021-01-29 00:20:46 +05:30
$('.js-denylist-file').hide();
$('.js-denylist-raw').show();
2018-03-17 18:26:18 +05:30
}
}
export default function adminInit() {
$('input#user_force_random_password').on('change', function randomPasswordClick() {
const $elems = $('#user_password, #user_password_confirmation');
if ($(this).attr('checked')) {
2018-03-27 19:54:05 +05:30
$elems.val('').prop('disabled', true);
2018-03-17 18:26:18 +05:30
} else {
2018-03-27 19:54:05 +05:30
$elems.prop('disabled', false);
2018-03-17 18:26:18 +05:30
}
});
2021-03-08 18:12:59 +05:30
$('body').on('click', '.js-toggle-colors-link', (e) => {
2018-03-17 18:26:18 +05:30
e.preventDefault();
2018-11-08 19:23:39 +05:30
$('.js-toggle-colors-container').toggleClass('hide');
2018-03-17 18:26:18 +05:30
});
$('li.project_member, li.group_member').on('ajax:success', refreshCurrentPage);
2021-01-29 00:20:46 +05:30
$("input[name='denylist_type']").on('click', showDenylistType);
showDenylistType();
2018-03-17 18:26:18 +05:30
}