mirror of
https://github.com/discourse/discourse-chat-integration.git
synced 2025-11-26 02:21:08 +00:00
18 lines
376 B
Ruby
18 lines
376 B
Ruby
|
|
class DiscourseChat::PublicController < ApplicationController
|
||
|
|
requires_plugin DiscourseChat::PLUGIN_NAME
|
||
|
|
|
||
|
|
def post_transcript
|
||
|
|
params.require(:secret)
|
||
|
|
|
||
|
|
redis_key = "chat_integration:transcript:" + params[:secret]
|
||
|
|
content = $redis.get(redis_key)
|
||
|
|
|
||
|
|
if content
|
||
|
|
render json: {content: content}
|
||
|
|
return
|
||
|
|
end
|
||
|
|
|
||
|
|
raise Discourse::NotFound
|
||
|
|
|
||
|
|
end
|
||
|
|
end
|