diff options
Diffstat (limited to 'app/helpers/path_builder_helper.rb')
| -rw-r--r-- | app/helpers/path_builder_helper.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/helpers/path_builder_helper.rb b/app/helpers/path_builder_helper.rb new file mode 100644 index 000000000..482cb91f0 --- /dev/null +++ b/app/helpers/path_builder_helper.rb @@ -0,0 +1,11 @@ +module PathBuilderHelper + + # Companies + def company_path(company) + line_referential_company_path(company.line_referential_id, company) + end + def edit_company_path(company) + edit_line_referential_company_path(company.line_referential_id, company) + end + +end |
