Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ImplicitRender): Change view path as per Phlex defaults
The default path to a Phlex view is `[:controller_path]/[:action_name]_view`, which is classify'ed and constantized. You can override this by defining a `phlex_view_path` method in your controller. ```ruby def phlex_view_path(action_name) "views/#{controller_path}/#{action_name}" end ```
- Loading branch information