Sort the task at dashboard by due_date
This commit is contained in:
parent
2d641b683a
commit
ad96159336
1 changed files with 3 additions and 3 deletions
|
@ -3,12 +3,12 @@ class HomeController < ApplicationController
|
||||||
|
|
||||||
def index
|
def index
|
||||||
# unaccepted tasks
|
# unaccepted tasks
|
||||||
@unaccepted_tasks = Task.unaccepted_tasks_for(current_user)
|
@unaccepted_tasks = Task.order(:due_date).unaccepted_tasks_for(current_user)
|
||||||
# task in next week
|
# task in next week
|
||||||
@next_tasks = Task.next_assigned_tasks_for(current_user)
|
@next_tasks = Task.order(:due_date).next_assigned_tasks_for(current_user)
|
||||||
# count tasks with no responsible person
|
# count tasks with no responsible person
|
||||||
# tasks for groups the current user is not a member are ignored
|
# tasks for groups the current user is not a member are ignored
|
||||||
@unassigned_tasks = Task.unassigned_tasks_for(current_user)
|
@unassigned_tasks = Task.order(:due_date).unassigned_tasks_for(current_user)
|
||||||
end
|
end
|
||||||
|
|
||||||
def profile
|
def profile
|
||||||
|
|
Loading…
Reference in a new issue