This commit is contained in:
2021-01-02 00:30:15 +00:00
parent 8d0e9fe8c9
commit 74db405e62
17 changed files with 29 additions and 27 deletions

View File

@@ -8,7 +8,7 @@ namespace AyaNova.DataList
Select aevent.id, aevent.created, aevent.ayid, aevent.ayatype, aevent.ayevent,
aevent.textra, auser.name, auser.id
from aevent
left outer join auser on (aevent.userid=auser.id)
left join auser on (aevent.userid=auser.id)
*/
@@ -16,7 +16,7 @@ namespace AyaNova.DataList
{
//NOTE: used this type because it's full BizFull and read only BizLimited only which is appropriate and there is no event type
DefaultListObjectType = AyaType.Global;
SQLFrom = "from aevent left outer join auser on (aevent.userid=auser.id)";
SQLFrom = "from aevent left join auser on (aevent.userid=auser.id)";
var RoleSet = BizRoles.GetRoleSet(DefaultListObjectType);
AllowedRoles = RoleSet.ReadFullRecord | RoleSet.Change;