Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/07/17 14:41:47 (7 years ago)
Author:
jzenisek
Message:

#2839 worked on resource permission checks (v2 = accelerated verison)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/Daos/ResourcePermissionDao.cs

    r15497 r15500  
    3434    }
    3535
    36     public IEnumerable<Guid> GetByGrantedUserId(IEnumerable<Guid> grantedUserId) {
    37       string paramIds = string.Join(",", grantedUserId.Select(x => string.Format("'{0}'", x)));
     36    public IEnumerable<Guid> GetByUserAndGroupIds(IEnumerable<Guid> userAndGroupIds) {
     37      string paramIds = string.Join(",", userAndGroupIds.Select(x => string.Format("'{0}'", x)));
    3838      if (!string.IsNullOrWhiteSpace(paramIds)) {
    3939        string query = string.Format(GetGrantedResourcesQuery, paramIds);
Note: See TracChangeset for help on using the changeset viewer.