aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorDiva Canto2009-12-29 13:39:21 -0800
committerDiva Canto2009-12-29 13:39:21 -0800
commit2294683f0747fd5691437ed4e10a73ae45c7650c (patch)
tree2883b00d764d6631305fb3bef0157bbbe23de7e7 /OpenSim/Services/Interfaces
parentPolished the IUserService interface. (diff)
downloadopensim-SC_OLD-2294683f0747fd5691437ed4e10a73ae45c7650c.zip
opensim-SC_OLD-2294683f0747fd5691437ed4e10a73ae45c7650c.tar.gz
opensim-SC_OLD-2294683f0747fd5691437ed4e10a73ae45c7650c.tar.bz2
opensim-SC_OLD-2294683f0747fd5691437ed4e10a73ae45c7650c.tar.xz
Tighten up the IUserService interface again. No need for auth tokens at this level.
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IUserService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs
index b6f8774..1089c6c 100644
--- a/OpenSim/Services/Interfaces/IUserService.cs
+++ b/OpenSim/Services/Interfaces/IUserService.cs
@@ -97,9 +97,9 @@ namespace OpenSim.Services.Interfaces
97 97
98 // Update all updatable fields 98 // Update all updatable fields
99 // 99 //
100 bool SetUserAccount(UserAccount data, UUID PrincipalID, string token); 100 bool SetUserAccount(UserAccount data);
101 101
102 // Creates a user data record 102 // Creates a user data record
103 bool CreateUserAccount(UserAccount data, UUID PrincipalID, string token); 103 bool CreateUserAccount(UserAccount data);
104 } 104 }
105} 105}