Guest User

Untitled

a guest
Jan 15th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.28 KB | None | 0 0
  1. class ProjectsController
  2.  
  3. ...
  4.  
  5. def tasks
  6.   @project = Project.find(params[:project_id])
  7.   @tasks = @project.tasks
  8.   render '/tasks/index'
  9. end
  10.  
  11. def new_task
  12.   @project = Project.find(params[:project_id])
  13.   @tasks = @project.tasks.build
  14.   render '/tasks/new'
  15. end
  16.  
  17. ...
  18.  
  19. end
Add Comment
Please, Sign In to add comment