Skip to content
Snippets Groups Projects

list view inline delete fix for calendar module

Merged Greeshma requested to merge greeshma.kk/vtigercrm:calendar_checkpermission into master

Merge request reports

Approval is optional

Merged by avatar (Mar 23, 2025 9:48am UTC)

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
31 31 $activityModulesList = array('Calendar', 'Events');
32 32 $recordEntityName = getSalesEntityType($record);
33 33
34 if (!in_array($recordEntityName, $activityModulesList) || !in_array($sourceModule, $activityModulesList)) {
34 if ((!empty($recordEntityName) && !in_array($recordEntityName, $activityModulesList)) || (!empty($sourceModule) && !in_array($sourceModule, $activityModulesList))) {
35 35 throw new AppException(vtranslate('LBL_PERMISSION_DENIED'));
  • Greeshma Added 1 commit:

    Added 1 commit:

    • c8f4acb9 - list view inline delete fix for calendar module
  • Prasad Status changed to merged

    Status changed to merged

  • Prasad mentioned in commit 0745e82d

    mentioned in commit 0745e82d

  • Please register or sign in to reply
    Loading