From a5860ad438885cbf76a36dc7958947355522b8cf Mon Sep 17 00:00:00 2001
From: Teravus Ovares
Date: Sat, 21 Jun 2008 03:29:08 +0000
Subject: * Adds Region ban capability to Regions.  You access this by going to
 World->Region/Estate.  Then on the Estate tab, at the lower right hand
 corner, clicking the 'Add' button and picking an avatar. * It only persists
 across reboots for the mySQL datastore currently. * Currently have stubs in
 the other datastores.

---
 OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'OpenSim/Region/Environment/Interfaces')

diff --git a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs
index c757461..0ea2c03 100644
--- a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs
+++ b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs
@@ -72,6 +72,12 @@ namespace OpenSim.Region.Environment.Interfaces
         void RemoveLandObject(LLUUID globalID);
         List<LandData> LoadLandObjects(LLUUID regionUUID);
 
+        List<RegionBanListItem> LoadRegionBanList(LLUUID regionUUID);
+        void AddToRegionBanlist(RegionBanListItem item);
+        void RemoveFromRegionBanlist(RegionBanListItem item);
+
+
+
         void Shutdown();
     }
 }
-- 
cgit v1.1