How to use private submit to hide from feed?
问题 In the valuations form there is a submit button and a <%= f.submit :private %> button. If private submit is clicked the submitted info will be hidden to other user's who view the profile. How can we also use <%= f.submit :private %> to hide submitted info from showing on the feed? activities/index.html.erb <h1>Feed</h1> <% @activities.each do |activity| %> <% if current_user == @user %> <%= render_activity activity %> <% else %> <%= render_activity activity %> #We'd need to make .public