27 lines
542 B
Ruby
27 lines
542 B
Ruby
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
||
|
|
||
|
class DataPrivacyTasksController < ApplicationController
|
||
|
prepend_before_action { authentication_check && authorize! }
|
||
|
|
||
|
def index
|
||
|
model_index_render(DataPrivacyTask, params)
|
||
|
end
|
||
|
|
||
|
def show
|
||
|
model_show_render(DataPrivacyTask, params)
|
||
|
end
|
||
|
|
||
|
def create
|
||
|
model_create_render(DataPrivacyTask, params)
|
||
|
end
|
||
|
|
||
|
def update
|
||
|
model_update_render(DataPrivacyTask, params)
|
||
|
end
|
||
|
|
||
|
def destroy
|
||
|
model_destroy_render(DataPrivacyTask, params)
|
||
|
end
|
||
|
|
||
|
end
|