8cce70730c
* new merge request can be created by sending an email to the specific email address (similar to creating issues by email) * for the first iteration, source branch must be specified in the mail subject, other merge request parameters can not be set yet * user should enable "Receive notifications about your own activity" in user settings to receive a notification about created merge request Part of #32878
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
import IssuableBulkUpdateSidebar from './issuable_bulk_update_sidebar';
|
|
import IssuableBulkUpdateActions from './issuable_bulk_update_actions';
|
|
|
|
export default class IssuableIndex {
|
|
constructor(pagePrefix) {
|
|
this.initBulkUpdate(pagePrefix);
|
|
IssuableIndex.resetIncomingEmailToken();
|
|
}
|
|
initBulkUpdate(pagePrefix) {
|
|
const userCanBulkUpdate = $('.issues-bulk-update').length > 0;
|
|
const alreadyInitialized = !!this.bulkUpdateSidebar;
|
|
|
|
if (userCanBulkUpdate && !alreadyInitialized) {
|
|
IssuableBulkUpdateActions.init({
|
|
prefixId: pagePrefix,
|
|
});
|
|
|
|
this.bulkUpdateSidebar = new IssuableBulkUpdateSidebar();
|
|
}
|
|
}
|
|
|
|
static resetIncomingEmailToken() {
|
|
$('.incoming-email-token-reset').on('click', (e) => {
|
|
e.preventDefault();
|
|
|
|
$.ajax({
|
|
type: 'PUT',
|
|
url: $('.incoming-email-token-reset').attr('href'),
|
|
dataType: 'json',
|
|
success(response) {
|
|
$('#issuable_email').val(response.new_address).focus();
|
|
},
|
|
beforeSend() {
|
|
$('.incoming-email-token-reset').text('resetting...');
|
|
},
|
|
complete() {
|
|
$('.incoming-email-token-reset').text('reset it');
|
|
},
|
|
});
|
|
});
|
|
}
|
|
}
|