debian-mirror-gitlab/app/controllers/dashboard/todos_controller.rb

42 lines
1 KiB
Ruby
Raw Normal View History

2016-04-02 18:10:28 +05:30
class Dashboard::TodosController < Dashboard::ApplicationController
2016-06-22 15:30:34 +05:30
before_action :find_todos, only: [:index, :destroy_all]
2016-04-02 18:10:28 +05:30
def index
2016-09-13 17:45:13 +05:30
@sort = params[:sort]
2016-06-02 11:05:42 +05:30
@todos = @todos.page(params[:page])
2016-04-02 18:10:28 +05:30
end
def destroy
2016-09-13 17:45:13 +05:30
TodoService.new.mark_todos_as_done_by_ids([params[:id]], current_user)
2016-04-02 18:10:28 +05:30
respond_to do |format|
2016-06-22 15:30:34 +05:30
format.html { redirect_to dashboard_todos_path, notice: 'Todo was successfully marked as done.' }
2016-06-02 11:05:42 +05:30
format.js { head :ok }
2016-08-24 12:49:21 +05:30
format.json { render json: todos_counts }
2016-04-02 18:10:28 +05:30
end
end
def destroy_all
2016-06-22 15:30:34 +05:30
TodoService.new.mark_todos_as_done(@todos, current_user)
2016-04-02 18:10:28 +05:30
respond_to do |format|
format.html { redirect_to dashboard_todos_path, notice: 'All todos were marked as done.' }
2016-06-02 11:05:42 +05:30
format.js { head :ok }
2016-08-24 12:49:21 +05:30
format.json { render json: todos_counts }
2016-04-02 18:10:28 +05:30
end
end
private
def find_todos
2016-06-22 15:30:34 +05:30
@todos ||= TodosFinder.new(current_user, params).execute
2016-04-02 18:10:28 +05:30
end
2016-08-24 12:49:21 +05:30
def todos_counts
{
2016-09-13 17:45:13 +05:30
count: current_user.todos_pending_count,
done_count: current_user.todos_done_count
2016-08-24 12:49:21 +05:30
}
end
2016-04-02 18:10:28 +05:30
end