2011-10-08 23:36:38 +02:00
|
|
|
class DashboardController < ApplicationController
|
2011-10-11 22:00:00 +02:00
|
|
|
def index
|
|
|
|
@projects = current_user.projects.all
|
2011-10-31 21:57:16 +01:00
|
|
|
@active_projects = @projects.select(&:last_activity_date).sort_by(&:last_activity_date).reverse
|
2011-10-11 22:00:00 +02:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|