aviau 9a9cd3f50f Added MongoDB objects validation
Change-Id: Id05afa718d9c2b0c8e1eb09645a3b5a3ae489e7c
2015-07-30 09:54:23 -04:00

28 lines
1.1 KiB
Python

# Copyright 2014 - Savoir-Faire Linux inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import mongoengine
from surveil.api.storage.mongodb.config import contact
from surveil.api.storage.mongodb import foreign_key_field
class ContactGroup(mongoengine.Document):
meta = {'collection': 'contactgroups'}
contactgroup_name = mongoengine.StringField(unique=True)
members = foreign_key_field.ForeignKeyListField(contact.Contact,
['contact_name'])
alias = mongoengine.StringField()
contactgroup_members = mongoengine.ListField()