summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/protected_branches.js.coffee
blob: 691fd4f10d8f78fe496a9b21b870e063a745d1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$ ->
  $(":checkbox").change ->
    name = $(this).attr("name")
    if name == "developers_can_push"
      id = $(this).val()
      checked = $(this).is(":checked")
      url = $(this).data("url")
      $.ajax
        type: "PUT"
        url: url
        dataType: "json"
        data:
          id: id
          developers_can_push: checked

        success: ->
          new Flash("Branch updated.", "notice")
          location.reload true

        error: ->
          new Flash("Failed to update branch!", "alert")