gitlab-org--gitlab-foss/app/controllers/dashboard/todos_controller.rb

42 lines
1.0 KiB
Ruby
Raw Normal View History

2016-02-20 13:59:59 +00:00
class Dashboard::TodosController < Dashboard::ApplicationController
before_action :find_todos, only: [:index, :destroy_all]
2016-02-20 19:53:25 +00:00
2016-02-20 13:59:59 +00:00
def index
2016-07-26 21:21:20 +00:00
@sort = params[:sort]
@todos = @todos.page(params[:page])
2016-02-20 13:59:59 +00:00
end
def destroy
TodoService.new.mark_todos_as_done_by_ids([params[:id]], current_user)
2016-02-20 13:59:59 +00:00
respond_to do |format|
format.html { redirect_to dashboard_todos_path, notice: 'Todo was successfully marked as done.' }
format.js { head :ok }
format.json { render json: todos_counts }
2016-02-20 13:59:59 +00:00
end
end
2016-02-20 19:53:25 +00:00
def destroy_all
TodoService.new.mark_todos_as_done(@todos, current_user)
2016-02-20 19:53:25 +00:00
respond_to do |format|
format.html { redirect_to dashboard_todos_path, notice: 'All todos were marked as done.' }
format.js { head :ok }
format.json { render json: todos_counts }
2016-02-20 19:53:25 +00:00
end
end
2016-02-20 13:59:59 +00:00
private
2016-02-20 19:53:25 +00:00
def find_todos
@todos ||= TodosFinder.new(current_user, params).execute
2016-02-20 19:53:25 +00:00
end
def todos_counts
{
count: current_user.todos_pending_count,
done_count: current_user.todos_done_count
}
end
2016-02-20 13:59:59 +00:00
end