summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/protected_branches/protected_branch_edit_list.js
blob: 6ab9a126e761ee9ca349e4e99ad88da1d6b064ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* eslint-disable no-new */

import $ from 'jquery';
import ProtectedBranchEdit from './protected_branch_edit';

export default class ProtectedBranchEditList {
  constructor() {
    this.$wrap = $('.protected-branches-list');
    this.initEditForm();
  }

  initEditForm() {
    this.$wrap.find('.js-protected-branch-edit-form').each((i, el) => {
      new ProtectedBranchEdit({
        $wrap: $(el),
        hasLicense: false,
      });
    });
  }
}