mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-08 23:13:21 +00:00
- Fixed Firecrawl webhook payloads to ensure proper data handling and delivery. - Removed unused Robin AI code to improve codebase cleanliness and maintainability. - Implement authentication for the Firecrawl endpoint to improve security. A key is generated to secure the webhook URLs from FireCrawl. --------- Co-authored-by: Pranav <pranavrajs@gmail.com>
10 lines
318 B
Ruby
10 lines
318 B
Ruby
module Captain::FirecrawlHelper
|
|
def generate_firecrawl_token(assistant_id, account_id)
|
|
api_key = InstallationConfig.find_by(name: 'CAPTAIN_FIRECRAWL_API_KEY')&.value
|
|
return nil unless api_key
|
|
|
|
token_base = "#{api_key[-4..]}#{assistant_id}#{account_id}"
|
|
Digest::SHA256.hexdigest(token_base)
|
|
end
|
|
end
|