Closed SaladFork closed 6 years ago
Controller actions are not supposed to be private. http://guides.rubyonrails.org/action_controller_overview.html#methods-and-actions
Only public methods are callable as actions. It is a best practice to lower the visibility of methods (with private or protected) which are not intended to be actions, like auxiliary methods or filters.
Sorry for the noise, thanks!
The breadcrumbs appear if
private
is commented out but do not appear if left in. The Rails routing and the rest of the UI works correctly in either case.