Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def create
- @report = Report.new(params[:report])
- @report.user = current_user # <---
- @report.company = current_company # <---
- if @report.save
- flash[:notice] = t('.flash.create')
- end
- respond_with @report, :location => reports_url
- end
Add Comment
Please, Sign In to add comment