mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
7 lines
271 B
Ruby
7 lines
271 B
Ruby
class AppleAppController < ApplicationController
|
|
def site_association
|
|
site_association_json = render_to_string action: 'site_association', layout: false
|
|
send_data site_association_json, filename: 'apple-app-site-association', type: 'application/json'
|
|
end
|
|
end
|