Created
October 29, 2012 14:24
-
-
Save erikzaadi/3973829 to your computer and use it in GitHub Desktop.
Unsubscribing to an entire organization at once
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var auth_token = $("input[name='authenticity_token']")[0].value; | |
$("a.repo-name[href^='/THEORG']").each(function($elem){ | |
$.post("/notifications/subscribe", { | |
authenticity_token : auth_token, | |
do : 'included', | |
'repository_id' : $("form.js-unsubscribe-form #repository_id", $(this).parent("li")).val() | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment