0 votes
in Ruby by
Within a Rails controller, which code will prevent the parent controller's before_action :get_feature from running?

 a. skip_before_action :get_feature

 b. skip :get_feature, except: []

 c. prevent_action :get_feature

 d. :redis_cache_store

1 Answer

0 votes
by
Within a Rails controller, which code will prevent the parent controller's before_action :get_feature from running?

 

 Correct answer is :-  skip_before_action :get_feature
...