You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indicate the reverse share used on the Share management page, maybe as of a ID, and possibly make it clickable, and if not clickable show the creator of the reverse share too.
🎤 Pitch
I'd desire to be easily able to know who made a specific share, and if it was a reverse share, someone I can get a hold of, to contact them and/or disable or delete their account in case something that shouldn't be uploaded is uploaded, right now you have to connect to the db and manually query the database, doing the following SQL commands, the output of the commands being the input on the snip section, and for the first command, the share id of a share:
SELECT reverseShareId FROM Share WHERE id='<snip>';
SELECT creatorId FROM ReverseShare WHERE id='<snip>';
SELECT username,email FROM User WHERE id='<snip>';
The text was updated successfully, but these errors were encountered:
🔖 Feature description
Indicate the reverse share used on the Share management page, maybe as of a ID, and possibly make it clickable, and if not clickable show the creator of the reverse share too.
🎤 Pitch
I'd desire to be easily able to know who made a specific share, and if it was a reverse share, someone I can get a hold of, to contact them and/or disable or delete their account in case something that shouldn't be uploaded is uploaded, right now you have to connect to the db and manually query the database, doing the following SQL commands, the output of the commands being the input on the snip section, and for the first command, the share id of a share:
The text was updated successfully, but these errors were encountered: