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
Currently, the users in each page in the page list include all of their data, not just an ID to look them up. This means that any changes made to the user data will not reflect on old pages, and makes the search mappings brittle.
Solution
Instead, we should store an array of { id, updateTime }, where each id is the <base64:username@provider> of the user. This would allow Kiln to always display the most up-to-date user information, and would remove some of the sanitization code around updating the page list.
The text was updated successfully, but these errors were encountered:
Problem
Currently, the users in each page in the page list include all of their data, not just an ID to look them up. This means that any changes made to the user data will not reflect on old pages, and makes the search mappings brittle.
Solution
Instead, we should store an array of
{ id, updateTime }
, where eachid
is the<base64:username@provider>
of the user. This would allow Kiln to always display the most up-to-date user information, and would remove some of the sanitization code around updating the page list.The text was updated successfully, but these errors were encountered: