Rails Form Submission, User can't be blank
- by pmanning
I'm trying to create an event through an event form and I keep getting a form error that says "User can't be blank". The event needs a user_id to post a feed_item showing who created the event. Why can't this event get created?
event.rb
class Event < ActiveRecord::Base
attr_accessible :description, :location, :title, :category_id,…