Render modal from partial in controller?

It sounds like this is way more complicated than necessary. Could you conditionally render the first_post partial?

<% if current_user.first_post? %>
  <% render 'modal' %>
<% end %>