Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12972 for trunk/sources


Ignore:
Timestamp:
09/29/15 15:27:37 (9 years ago)
Author:
ascheibe
Message:

#2479 added missing commits to hive service methods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive/3.3/HiveService.cs

    r12932 r12972  
    629629          AuthorizeForResource(pm, resourceId);
    630630          resourcePermissionDao.DeleteByResourceAndGrantedUserId(resourceId, grantedUserIds);
     631          pm.SubmitChanges();
    631632        });
    632633      }
     
    777778        pm.UseTransaction(() => {
    778779          slaveDao.Delete(slaveId);
     780          pm.SubmitChanges();
    779781        });
    780782      }
     
    789791        pm.UseTransaction(() => {
    790792          slaveGroupDao.Delete(slaveGroupId);
     793          pm.SubmitChanges();
    791794        });
    792795      }
Note: See TracChangeset for help on using the changeset viewer.