mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	 b5f4e8155b
			
		
	
	b5f4e8155b
	
	
	
		
			
			- Moved `apple-app-site-association` to `.well-known/apple-app-site-association` https://docs.expo.dev/linking/ios-universal-links/#create-aasa-file - Updated the paths pattern to accept conversation links only.
		
			
				
	
	
		
			11 lines
		
	
	
		
			332 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			332 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rails_helper'
 | |
| 
 | |
| describe '.well-known/apple-app-site-association', type: :request do
 | |
|   describe 'GET /.well-known/apple-app-site-association' do
 | |
|     it 'renders the apple-app-site-association file' do
 | |
|       get '/.well-known/apple-app-site-association'
 | |
|       expect(response).to have_http_status(:success)
 | |
|     end
 | |
|   end
 | |
| end
 |