I wanted to pass the current_user in devise to my angular app. I’m not sure that this is best practice but it works.


<% if current_user %>
  <script>
    var current_user = <%= raw current_user.to_json  %>
  </script>
<% end %>


Related External Links: