Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/30/09 16:58:54 (15 years ago)
Author:
svonolfe
Message:

Fixed some bugs in the Security DAL (#597)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/ClientGroupAdapter.cs

    r1656 r1729  
    8686
    8787        ICollection<Guid> resources =
    88           ManyToManyRelationHelper.GetRelationships(clientGroup.Id);
     88          ManyToManyRelationHelper.GetRelationships(clientGroup.Id, 1);
    8989
    9090        clientGroup.Resources.Clear();
     
    127127
    128128        ManyToManyRelationHelper.UpdateRelationships(group.Id,
    129           relationships);
     129          relationships, 1);
    130130      }
    131131    }
     
    151151        //delete all relationships
    152152        ManyToManyRelationHelper.UpdateRelationships(group.Id,
    153           new List<Guid>());
     153          new List<Guid>(), 1);
    154154
    155155        return base.doDelete(group) &&
Note: See TracChangeset for help on using the changeset viewer.