This commit is contained in:
lx
2026-07-06 14:01:11 -04:00
commit c4f97d729d
16468 changed files with 935321 additions and 0 deletions
@@ -0,0 +1,20 @@
local Modules = game:GetService("CoreGui").RobloxGui.Modules
local Events = Modules.LuaChat.Analytics.Events
local loadGameLinkCardInChat = require(Events.loadGameLinkCardInChat)
local RoactAnalytics = require(Modules.LuaApp.Services.RoactAnalytics)
local GameCardLoadedAnalytics = {}
function GameCardLoadedAnalytics.get(context)
local analyticsImpl = RoactAnalytics.get(context)
local analyticsConsumer = {}
function analyticsConsumer.reportGameCardLoadedInLuaChat(conversationId, placeId)
loadGameLinkCardInChat(analyticsImpl.EventStream, "luaAppChat", conversationId, placeId)
end
return analyticsConsumer
end
return GameCardLoadedAnalytics