diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-02-20 11:59:59 -0200 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-02-20 12:39:27 -0200 |
commit | 3d52e139b13ad077286f2f9f46b7e98f43ad9564 (patch) | |
tree | 22c70561b0f64851d938e44661aafeed3a2c80b2 /app/controllers/dashboard | |
parent | 408e010d65e7e2e2b64a694e12d44636d7d81dec (diff) | |
download | gitlab-ce-3d52e139b13ad077286f2f9f46b7e98f43ad9564.tar.gz |
Rename Tasks to Todos
Diffstat (limited to 'app/controllers/dashboard')
-rw-r--r-- | app/controllers/dashboard/tasks_controller.rb | 21 | ||||
-rw-r--r-- | app/controllers/dashboard/todos_controller.rb | 23 |
2 files changed, 23 insertions, 21 deletions
diff --git a/app/controllers/dashboard/tasks_controller.rb b/app/controllers/dashboard/tasks_controller.rb deleted file mode 100644 index a8884be54e4..00000000000 --- a/app/controllers/dashboard/tasks_controller.rb +++ /dev/null @@ -1,21 +0,0 @@ -class Dashboard::TasksController < Dashboard::ApplicationController - def index - @tasks = TasksFinder.new(current_user, params).execute - @tasks = @tasks.page(params[:page]).per(PER_PAGE) - end - - def destroy - task.done! - - respond_to do |format| - format.html { redirect_to dashboard_tasks_path, notice: 'Task was successfully marked as done.' } - format.js { render nothing: true } - end - end - - private - - def task - @task ||= current_user.tasks.find(params[:id]) - end -end diff --git a/app/controllers/dashboard/todos_controller.rb b/app/controllers/dashboard/todos_controller.rb new file mode 100644 index 00000000000..e24b8d3e58f --- /dev/null +++ b/app/controllers/dashboard/todos_controller.rb @@ -0,0 +1,23 @@ +class Dashboard::TodosController < Dashboard::ApplicationController + def index + @todos = TodosFinder.new(current_user, params).execute + @todos = @todos.page(params[:page]).per(PER_PAGE) + end + + def destroy + todo.done! + + respond_to do |format| + format.html { redirect_to dashboard_todos_path, notice: 'Todo was successfully marked as done.' } + format.js { render nothing: true } + end + end + + private + + def todo + @todo ||= current_user.todos.find(params[:id]) + end +end + + |