Class: Kanaui::ReportsController
Instance Method Summary
collapse
#current_tenant_user, #get_layout, #options_for_klient
Instance Method Details
#create ⇒ Object
12
13
14
15
16
17
|
# File 'app/controllers/kanaui/reports_controller.rb', line 12
def create
Kanaui::DashboardHelper::DashboardApi.create_report(report_from_params.to_json, options_for_klient)
flash[:notice] = 'Report successfully created'
redirect_to :action => :index
end
|
#destroy ⇒ Object
39
40
41
42
43
44
|
# File 'app/controllers/kanaui/reports_controller.rb', line 39
def destroy
Kanaui::DashboardHelper::DashboardApi.delete_report(params.require(:id), options_for_klient)
flash[:notice] = 'Report successfully deleted'
redirect_to :action => :index
end
|
#edit ⇒ Object
19
20
21
22
23
|
# File 'app/controllers/kanaui/reports_controller.rb', line 19
def edit
@report = JSON.parse(Kanaui::DashboardHelper::DashboardApi.available_reports(options_for_klient))
.find { |x| x['reportName'] == params.require(:id) }
.deep_symbolize_keys
end
|
#new ⇒ Object
8
9
10
|
# File 'app/controllers/kanaui/reports_controller.rb', line 8
def new
@report = {}
end
|
#refresh ⇒ Object
32
33
34
35
36
37
|
# File 'app/controllers/kanaui/reports_controller.rb', line 32
def refresh
Kanaui::DashboardHelper::DashboardApi.refresh_report(params.require(:id), options_for_klient)
flash[:notice] = 'Report refresh successfully scheduled'
redirect_to :action => :index
end
|
#update ⇒ Object
25
26
27
28
29
30
|
# File 'app/controllers/kanaui/reports_controller.rb', line 25
def update
Kanaui::DashboardHelper::DashboardApi.update_report(params.require(:id), report_from_params.to_json, options_for_klient)
flash[:notice] = 'Report successfully updated'
redirect_to :action => :index
end
|