summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/protected_branches.js
blob: db21a19964dc69bcdbefd534c43234ef8610ad5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(function() {
  $(function() {
    return $(".protected-branches-list :checkbox").change(function(e) {
      var can_push, id, name, obj, url;
      name = $(this).attr("name");
      if (name === "developers_can_push" || name === "developers_can_merge") {
        id = $(this).val();
        can_push = $(this).is(":checked");
        url = $(this).data("url");
        return $.ajax({
          type: "PATCH",
          url: url,
          dataType: "json",
          data: {
            id: id,
            protected_branch: (
              obj = {},
              obj["" + name] = can_push,
              obj
            )
          },
          success: function() {
            var row;
            row = $(e.target);
            return row.closest('tr').effect('highlight');
          },
          error: function() {
            return new Flash("Failed to update branch!", "alert");
          }
        });
      }
    });
  });

}).call(this);