solidusio / solidus_auth_devise

🔑 Devise authentication for your Solidus store.
http://solidus.io
BSD 3-Clause "New" or "Revised" License
52 stars 124 forks source link

Use of `helper_method` should be wrapped in `respond_to?` check #90

Closed stewart closed 7 years ago

stewart commented 7 years ago

As in solidus_core, solidus_auth_devise makes of the helper_method function provided by AbstractController. This method is not included in API-only applications, and should be wrapped with respond_to? checks, as Devise has done.