foodsoft/app/controllers/periodic_task_groups_contro...

9 lines
243 B
Ruby
Raw Normal View History

class PeriodicTaskGroupsController < ApplicationController
def destroy
@task_group = PeriodicTaskGroup.find(params[:id])
@task_group.destroy
redirect_to tasks_url, notice: I18n.t('periodic_task_groups.destroy.notice')
end
end