diff options
author | Melanie | 2010-05-09 17:56:52 +0100 |
---|---|---|
committer | Melanie | 2010-05-09 17:56:52 +0100 |
commit | 60357d3778c95a47481f790803b7af39c70cde9c (patch) | |
tree | cc49f9da3a6907c32d3e8de31c1d811b11477d30 /OpenSim/Data/SQLiteLegacy | |
parent | Add a field asset_flags and a corresponding enum to the asset database. This (diff) | |
download | opensim-SC_OLD-60357d3778c95a47481f790803b7af39c70cde9c.zip opensim-SC_OLD-60357d3778c95a47481f790803b7af39c70cde9c.tar.gz opensim-SC_OLD-60357d3778c95a47481f790803b7af39c70cde9c.tar.bz2 opensim-SC_OLD-60357d3778c95a47481f790803b7af39c70cde9c.tar.xz |
Implement the "delete" path for assets. Adds a new option to allow remote asset deletion in robust handler.
Diffstat (limited to 'OpenSim/Data/SQLiteLegacy')
-rw-r--r-- | OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs b/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs index 0d63dea..df50902 100644 --- a/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs +++ b/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs | |||
@@ -338,6 +338,10 @@ namespace OpenSim.Data.SQLiteLegacy | |||
338 | get { return "SQLite Asset storage engine"; } | 338 | get { return "SQLite Asset storage engine"; } |
339 | } | 339 | } |
340 | 340 | ||
341 | public override bool Delete(string id) | ||
342 | { | ||
343 | return false; | ||
344 | } | ||
341 | #endregion | 345 | #endregion |
342 | } | 346 | } |
343 | } \ No newline at end of file | 347 | } |