I was wondering where is the configuration in glide app for this: every time something new is added by the app creator, other users will get notified, or at least when they open the app, the new content will be signed there.
You can’t notify people the native app way (as in a pop-up notification on their phone).
The best you can do is showing new content at the top of, for example, the Home tab, so they don’t miss it.
This brings the question of how do you define “new” though?
Does “new” mean they haven’t read it? If so, have a user-specific boolean column called “Read”. When users open the item to read the details, before showing the details view to them, set the “Read” column to true. “New” in this case means “Read” is not true.
Or, “new” means it was added anytime between the past 7 days. Have a math column to subtract 7 from now, then filter by submission time (you must catch this when you add new items using the current date/time special value) is after the “7 days before” mark.
Really nice video Bob. Thank you. Echoes of some Swirl features only so much cleaner!
Watching the CSS for message count was super interesting. Picked up the simple of tip of counting likes and incrementing with a heart emoji as the symbol!
For me I would sacrifice an ever growing news feed and change the acknowledge action so that it simply deletes the news feed row. Makes counting easier too. I don’t think users really need to see their like history. At first I thought this would sacrifice the feature of knowing how many likes a particular item has ever received. But of course you can have a simple counter in the Items list. That said, it begs the question: 'Is there an action that could add the ‘liker’ to a growing list of people that ever liked an item, e.g. a growing array of user ID’s stored in the Glide Table for the items?