From 36c3b2e29fcc27fd0676f666ccf697086984b6be Mon Sep 17 00:00:00 2001 From: Yuriy Taraday Date: Tue, 15 Jan 2013 23:31:11 +0400 Subject: Sync base identity Driver defs with SQL driver Change-Id: Id20c1167dbc718ba4bd8cb0df88edd2bc922c3c6 --- keystone/identity/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keystone/identity/core.py b/keystone/identity/core.py index 0938b39a..fa9c089c 100644 --- a/keystone/identity/core.py +++ b/keystone/identity/core.py @@ -335,7 +335,7 @@ class Driver(object): """ raise exception.NotImplemented() - def list_users_in_group(self, group_id, group): + def list_users_in_group(self, group_id): """List all users in a group. :returns: a list of user_refs or an empty list. @@ -501,7 +501,7 @@ class Driver(object): """ raise exception.NotImplemented() - def list_groups_for_user(self, user_id, user): + def list_groups_for_user(self, user_id): """List all groups a user is in :returns: a list of group_refs or an empty list. -- cgit