This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def save_report | |
| result = SaveReportService.call(@report_params) | |
| if result.success? | |
| redirect_to workforce_report_path(result.report.report_key, params: { saved_report_id: result.report.id }), | |
| notice: "Report saved successfully" | |
| else | |
| redirect_to workforce_report_path(params[:id]), alert: result.error_message | |
| end | |
| end |
NewerOlder