11 lines
460 B
Lua
11 lines
460 B
Lua
local CorePackages = game:GetService("CorePackages")
|
|
|
|
local FFlagPlacesListV1 = require(CorePackages.AppTempCommon.LuaApp.Flags.IsPlacesListV1Enabled)
|
|
|
|
local FFlagLuaHomePeopleListV1V361 = settings():GetFFlag("LuaHomePeopleListV1V361")
|
|
|
|
return function()
|
|
-- When we should fetch games data could change in the future
|
|
-- Right now, we should fetch games data when people list on or place list on
|
|
return FFlagLuaHomePeopleListV1V361 or FFlagPlacesListV1()
|
|
end |