Pass Devise User To AngularJS

Posted By Weston Ganger

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:

Article Topic:Software Development - Angular

Date:July 07, 2015