mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +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
|