Is it possible to create an "Online" status?

i would like to add a feature to show is Online in the app right now. If a user is online it would show “Online” as a meta text on a user profile

There is no native feature that would allow you to do this.

The closest you could get is to have a “LastActive” date/time column in the User Profile row, and then strategically place actions in various places around your App that would set that column to the current time. You could then set a threshold (say for example, 5 minutes) and use a bit of Date math to identify which users have been active within the past 5 minutes.

That won’t be 100% reliable - and it depends how many actions you use and where - but it’s probably the closest you can get.

1 Like

alright thank you