Is there a way to track who uploaded what to an app?

I am working on a recipe app that has multiple users with the ability to upload recipes within the app. How do we track who uploaded what?

Assuming that you have User Profiles configured, and your Users will be signed in when they add a recipe, then what you can do is create an “Added By” column in your Recipes table. And then when a user adds a recipe, save their UserID or email address in that column.

3 Likes

Got it – thanks!!

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.