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
This commit is contained in:
commit
17be364d07
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
class Explore::ApplicationController < ApplicationController
|
||||
skip_before_action :authenticate_user!, :reject_blocked
|
||||
skip_before_action :authenticate_user!, :reject_blocked!
|
||||
|
||||
layout 'explore'
|
||||
end
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
class HelpController < ApplicationController
|
||||
skip_before_action :authenticate_user!, :reject_blocked
|
||||
skip_before_action :authenticate_user!, :reject_blocked!
|
||||
|
||||
layout 'help'
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
class SearchController < ApplicationController
|
||||
skip_before_action :authenticate_user!, :reject_blocked
|
||||
skip_before_action :authenticate_user!, :reject_blocked!
|
||||
|
||||
include SearchHelper
|
||||
|
||||
|
|
Loading…
Reference in a new issue