in server/src/jetbrains/buildServer/vsoRooms/controllers/VSONotificatorSettingsController.java [63:76]
private void registerDisableActions() {
addAction("enable", new Action() {
public void run(HttpServletRequest request) throws Exception {
myConfig.setPaused(false);
myConfig.save();
}
});
addAction("disable", new Action() {
public void run(HttpServletRequest request) throws Exception {
myConfig.setPaused(true);
myConfig.save();
}
});
}