This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user