# HG changeset patch # User Ryan Schlesinger # Date 1262194805 28800 # Node ID a36204cab6095047bf2f6038977356e39040b67e # Parent 9538a7ffae4fde6ab54f3fe1cd92a1402f51eca8 Skip check_if_login_required for github hook. Github doesn't need to log in to redmine to notify it of changes. diff -r 9538a7ffae4fde6ab54f3fe1cd92a1402f51eca8 -r a36204cab6095047bf2f6038977356e39040b67e app/controllers/github_hook_controller.rb --- a/app/controllers/github_hook_controller.rb Wed Nov 18 21:53:19 2009 +0100 +++ b/app/controllers/github_hook_controller.rb Wed Dec 30 09:40:05 2009 -0800 @@ -2,7 +2,7 @@ class GithubHookController < ApplicationController - skip_before_filter :verify_authenticity_token + skip_before_filter :verify_authenticity_token, :check_if_login_required def index payload = JSON.parse(params[:payload])