Guest User

Untitled

a guest
Jan 12th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def create
  2. @report = Report.new(params[:report])
  3. @report.user = current_user # <---
  4. @report.company = current_company # <---
  5. if @report.save
  6. flash[:notice] = t('.flash.create')
  7. end
  8. respond_with @report, :location => reports_url
  9. end
Add Comment
Please, Sign In to add comment