aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/path_builder_helper.rb
blob: 482cb91f03bd45c2f5e6016f3fc60a5e8c5ed729 (plain)
1
2
3
4
5
6
7
8
9
10
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