Class: Houston::Roadmaps::ProjectGoalsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/houston/roadmaps/project_goals_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



8
9
10
11
12
13
# File 'app/controllers/houston/roadmaps/project_goals_controller.rb', line 8

def index
  authorize! :read, Milestone.new(project_id: @project.id)

  @title = "Goals for #{@project.name}"
  @milestones = @project.milestones
end