Tighten up the IUserService interface again. No need for auth tokens at this level.
parent
6eb5754f5a
commit
2294683f07
|
@ -96,12 +96,12 @@ namespace OpenSim.Services.Connectors
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool SetUserAccount(UserAccount data, UUID principalID, string token)
|
public bool SetUserAccount(UserAccount data)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool CreateUserAccount(UserAccount data, UUID principalID, string token)
|
public bool CreateUserAccount(UserAccount data)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,9 +97,9 @@ namespace OpenSim.Services.Interfaces
|
||||||
|
|
||||||
// Update all updatable fields
|
// Update all updatable fields
|
||||||
//
|
//
|
||||||
bool SetUserAccount(UserAccount data, UUID PrincipalID, string token);
|
bool SetUserAccount(UserAccount data);
|
||||||
|
|
||||||
// Creates a user data record
|
// Creates a user data record
|
||||||
bool CreateUserAccount(UserAccount data, UUID PrincipalID, string token);
|
bool CreateUserAccount(UserAccount data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,18 +57,17 @@ namespace OpenSim.Services.UserAccountService
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool SetUserAccount(UserAccount data, UUID principalID, string token)
|
public bool SetUserAccount(UserAccount data)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool CreateUserAccount(UserAccount data, UUID principalID, string token)
|
public bool CreateUserAccount(UserAccount data)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<UserAccount> GetUserAccounts(UUID scopeID,
|
public List<UserAccount> GetUserAccounts(UUID scopeID, string query)
|
||||||
string query)
|
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue