Skip to content

Commit

Permalink
Merge pull request #493 from zlamalp/clean
Browse files Browse the repository at this point in the history
Removed unused variable from the script for scim service
  • Loading branch information
zlamalp authored Oct 30, 2020
2 parents 73c5948 + 52d99f5 commit 4161fcb
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions gen/scim
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ use strict;
use warnings;
use perunServicesInit;
use perunServicesUtils;
use Perun::Agent;
use Perun::GroupsAgent;
use open qw/:std :utf8/;
use JSON::XS;
use utf8;
Expand Down Expand Up @@ -47,17 +45,12 @@ my $userEmail = {};
my $userDisplayName = {};
my $userLogin = {};

my $groupName = {};
my $groupParentId = {};

my $fileUsers = $DIRECTORY . "/users.scim";
my $fileGroups = $DIRECTORY . "/groups.scim";

my $agent = perunServicesInit->getAgent;

foreach my $resourceData ($data->getChildElements) {
foreach my $groupData (($resourceData->getChildElements)[0]->getChildElements) {
my $groupMembersLogins = processGroups $groupData;
processGroups $groupData;
}
}

Expand Down

0 comments on commit 4161fcb

Please sign in to comment.