mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
Change the interface a bit before someone depends on it's current form
This commit is contained in:
@@ -46,6 +46,6 @@ namespace OpenSim.Data
|
||||
/// </summary>
|
||||
public interface IUserAccountData
|
||||
{
|
||||
bool Store(UserAccountData data);
|
||||
bool Store(UserAccountData data, UUID principalID, string token);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,6 +40,10 @@ namespace OpenSim.Data.MySQL
|
||||
public MySqlUserAccountData(string connectionString, string realm)
|
||||
: base(connectionString, realm, "UserAccount")
|
||||
{
|
||||
public bool Store(UserAccountData data, UUID principalID, string token)
|
||||
{
|
||||
Store(data);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user