mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
Tighten up the IUserService interface again. No need for auth tokens at this level.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user