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

45 lines
1 KiB
Ruby
Raw Normal View History

2016-04-02 18:10:28 +05:30
class Dashboard::TodosController < Dashboard::ApplicationController
2016-06-02 11:05:42 +05:30
before_action :find_todos, only: [:index, :destroy, :destroy_all]
2016-04-02 18:10:28 +05:30
def index
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-06-02 11:05:42 +05:30
todo.done
todo_notice = 'Todo was successfully marked as done.'
2016-04-02 18:10:28 +05:30
respond_to do |format|
2016-06-02 11:05:42 +05:30
format.html { redirect_to dashboard_todos_path, notice: todo_notice }
format.js { head :ok }
format.json do
render json: { count: @todos.size, done_count: current_user.todos.done.count }
end
2016-04-02 18:10:28 +05:30
end
end
def destroy_all
2016-06-02 11:05:42 +05:30
@todos.each(&:done)
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 }
format.json do
find_todos
render json: { count: @todos.size, done_count: current_user.todos.done.count }
end
2016-04-02 18:10:28 +05:30
end
end
private
def todo
@todo ||= current_user.todos.find(params[:id])
end
def find_todos
@todos = TodosFinder.new(current_user, params).execute
end
end