persistent class %SYS.Portal.Users
extends %Persistent, %XML.Adaptor, %SYSTEM.Help
This class will allow a user to specify and save favorite pages in the
system management portal.
query List(Usernames As %String = "*")
Selects
Username As %String, Page As %String, Data As %List
List of users and their page favorites.
Names - Comma separated list of users
"*" - All records match
"String,String1" - Any records matching one of these elements
"String*" - Any record starting with "String"
"String,String1*,String2" - Any record mathing one of these elements, or starting with "String1"
Note: This query may change in future versions
index (UserNamePageIndex on Username,Page) [IdKey];