Merge pull request #2907 from techAPJ/patch-1

include all groups in user csv export
This commit is contained in:
Robin Ward 2014-10-23 15:20:49 -04:00
commit 1962563c31
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ module Jobs
def get_group_names(user)
group_names = []
groups = user.custom_groups
groups = user.groups
groups.each do |group|
group_names.push(group.name)
end