Skip to content
Snippets Groups Projects
Commit 17be364d authored by Robert Speicher's avatar Robert Speicher
Browse files

Merge branch 'rename-undefined-methods' into 'master'

Replace reject_blocked with reject_blocked! in skipped callbacks.

`reject_blocked!` was introduced in c9def945, I can't find any references to `reject_blocked` ever existing.

See merge request !5532
parents f6063bae b1c94754
No related branches found
No related tags found
1 merge request!5532Replace reject_blocked with reject_blocked! in skipped callbacks.
Pipeline #
class Explore::ApplicationController < ApplicationController class Explore::ApplicationController < ApplicationController
skip_before_action :authenticate_user!, :reject_blocked skip_before_action :authenticate_user!, :reject_blocked!
   
layout 'explore' layout 'explore'
end end
class HelpController < ApplicationController class HelpController < ApplicationController
skip_before_action :authenticate_user!, :reject_blocked skip_before_action :authenticate_user!, :reject_blocked!
   
layout 'help' layout 'help'
   
Loading
Loading
class SearchController < ApplicationController class SearchController < ApplicationController
skip_before_action :authenticate_user!, :reject_blocked skip_before_action :authenticate_user!, :reject_blocked!
   
include SearchHelper include SearchHelper
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment