mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
7 lines
191 B
Ruby
7 lines
191 B
Ruby
module FrontendUrlsHelper
|
|
def frontend_url(path, **query_params)
|
|
url_params = query_params.blank? ? '' : "?#{query_params.to_query}"
|
|
"#{root_url}app/#{path}#{url_params}"
|
|
end
|
|
end
|