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
It would enhance the profile page to have it run a query to the backend resulting in listing all models associated with the active username, so that people can stop having to manually track the Automerge hashes of all their models.
The text was updated successfully, but these errors were encountered:
Here's the SQL query we'd like the front-end to make, with kevincarlson replaced by the current username and some questions about whether own is always what we want to search for. I don't know yet how you cause the front end to make such a query.
SELECTsnapshots.for_ref, snapshots.content->>'name'as title
FROM snapshots
JOIN refs ONsnapshots.for_ref=refs.idJOIN permissions ONrefs.id=permissions.objectJOIN users ONpermissions.subject=users.idWHEREusers.username='kevincarlson'ANDpermissions.level='own';
It would enhance the profile page to have it run a query to the backend resulting in listing all models associated with the active username, so that people can stop having to manually track the Automerge hashes of all their models.
The text was updated successfully, but these errors were encountered: