bexis / Module_ResourceManagement

Resource booking management module: This is a calendar based tool to manage any kind of resource. It is highly configurable to cover multiple scenarios. It helps to communicate the bookings and activities to all users (or colleagues and other stakeholders). Module for Core @BEXIS2.
2 stars 1 forks source link

Auto right on entities (resources, ...) must be changed #76

Closed EleonoraPetzold closed 4 years ago

EleonoraPetzold commented 4 years ago

//31 is the sum from all rights: Read = 1, Download = 2, Write = 4, Delete = 8, Grant = 16 pManager.Create(user, entityType, a.Id, 31); There is no download anymore in core. And I think the sum is now wrong?!

Create right not with fix number! int rights = (int)RightType.Read + (int)RightType.Write;

EleonoraPetzold commented 4 years ago

Done!