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
In the VFolder purge API, it's set up to look up records using query_accessible_vfolders() and return 'VFolder Not Found' if nothing is found. query_accessible_vfolders() performs an inner join between the vfolders table and users table when querying VFolder records. When a user is removed, this inner join prevents VFolder records from being queried.
Don't call query_accessible_vfolders() in the purge API, instead query directly by folder ID (purge API is admin-only)
Change the vfolders users table join in query_accessible_vfolders() to a left outer join
any ideas?
The text was updated successfully, but these errors were encountered:
In the VFolder purge API, it's set up to look up records using
query_accessible_vfolders()
and return 'VFolder Not Found' if nothing is found.query_accessible_vfolders()
performs an inner join between the vfolders table and users table when querying VFolder records. When a user is removed, this inner join prevents VFolder records from being queried.query_accessible_vfolders()
in the purge API, instead query directly by folder ID (purge API is admin-only)query_accessible_vfolders()
to a left outer joinThe text was updated successfully, but these errors were encountered: