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;
|
||||
}
|
||||
|
||||
public bool SetUserAccount(UserAccount data, UUID principalID, string token)
|
||||
public bool SetUserAccount(UserAccount data)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool CreateUserAccount(UserAccount data, UUID principalID, string token)
|
||||
public bool CreateUserAccount(UserAccount data)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -97,9 +97,9 @@ namespace OpenSim.Services.Interfaces
|
|||
|
||||
// Update all updatable fields
|
||||
//
|
||||
bool SetUserAccount(UserAccount data, UUID PrincipalID, string token);
|
||||
bool SetUserAccount(UserAccount data);
|
||||
|
||||
// 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;
|
||||
}
|
||||
|
||||
public bool SetUserAccount(UserAccount data, UUID principalID, string token)
|
||||
public bool SetUserAccount(UserAccount data)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool CreateUserAccount(UserAccount data, UUID principalID, string token)
|
||||
public bool CreateUserAccount(UserAccount data)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public List<UserAccount> GetUserAccounts(UUID scopeID,
|
||||
string query)
|
||||
public List<UserAccount> GetUserAccounts(UUID scopeID, string query)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue