app/soc/logic/models/settings.py
changeset 318 e8eeccd7ef0f
parent 316 9efdc7bc3565
equal deleted inserted replaced
317:87215136c268 318:e8eeccd7ef0f
    12 # distributed under the License is distributed on an "AS IS" BASIS,
    12 # distributed under the License is distributed on an "AS IS" BASIS,
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    14 # See the License for the specific language governing permissions and
    14 # See the License for the specific language governing permissions and
    15 # limitations under the License.
    15 # limitations under the License.
    16 
    16 
    17 """Settings (Model) query functions.
    17 """SiteSettings (Model) query functions.
    18 """
    18 """
    19 
    19 
    20 __authors__ = [
    20 __authors__ = [
    21   '"Sverre Rabbelier" <sverer@rabbelier.nl>',
    21   '"Sverre Rabbelier" <sverer@rabbelier.nl>',
    22   ]
    22   ]
    27 
    27 
    28 import soc.models.site_settings
    28 import soc.models.site_settings
    29 
    29 
    30 
    30 
    31 class Logic(base.Logic):
    31 class Logic(base.Logic):
    32   """Logic methods for the Settings model
    32   """Logic methods for the SiteSettings model
    33   """
    33   """
    34 
    34 
    35   def __init__(self):
    35   def __init__(self):
    36     """Defines the name, key_name and model for this entity.
    36     """Defines the name, key_name and model for this entity.
    37     """
    37     """
    38 
    38 
    39     self._name = "settings"
    39     self._name = "site_settings"
    40     self._model = soc.models.site_settings.SiteSettings
    40     self._model = soc.models.site_settings.SiteSettings
    41     self._keyName = key_name.nameSiteSettings
    41     self._keyName = key_name.nameSiteSettings
    42     self._skip_properties = []
    42     self._skip_properties = []
    43 
    43 
    44 
    44