aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IUserAccountData.cs
diff options
context:
space:
mode:
authorDiva Canto2010-04-16 16:36:44 -0700
committerDiva Canto2010-04-16 16:36:44 -0700
commit930d3745256ced37afb2d91817eba941d06a50b0 (patch)
treea39aa45e8291e4ec48efea277c6ec50c5baf70fe /OpenSim/Data/IUserAccountData.cs
parentrefactor: move DeatchObject() into the AttachmentsModule (diff)
downloadopensim-SC_OLD-930d3745256ced37afb2d91817eba941d06a50b0.zip
opensim-SC_OLD-930d3745256ced37afb2d91817eba941d06a50b0.tar.gz
opensim-SC_OLD-930d3745256ced37afb2d91817eba941d06a50b0.tar.bz2
opensim-SC_OLD-930d3745256ced37afb2d91817eba941d06a50b0.tar.xz
Expose Delete at IUserAccountData interface. It was there already. No changes in IUserAccountService, just the data layer.
Diffstat (limited to 'OpenSim/Data/IUserAccountData.cs')
-rw-r--r--OpenSim/Data/IUserAccountData.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Data/IUserAccountData.cs b/OpenSim/Data/IUserAccountData.cs
index 6ee5995..906ba6c 100644
--- a/OpenSim/Data/IUserAccountData.cs
+++ b/OpenSim/Data/IUserAccountData.cs
@@ -48,6 +48,7 @@ namespace OpenSim.Data
48 { 48 {
49 UserAccountData[] Get(string[] fields, string[] values); 49 UserAccountData[] Get(string[] fields, string[] values);
50 bool Store(UserAccountData data); 50 bool Store(UserAccountData data);
51 bool Delete(string field, string val);
51 UserAccountData[] GetUsers(UUID scopeID, string query); 52 UserAccountData[] GetUsers(UUID scopeID, string query);
52 } 53 }
53} 54}