blob: 680188c715ea85f06cf8d03416e66d928ecbe208 [file] [log] [blame]
Zack Williams7e60db32016-05-02 17:17:45 -07001# Syndicate service models.py
2
3from core.models import Service
4from django.db import models, transaction
5
6SERVICE_NAME = 'syndicateservice'
7SERVICE_NAME_VERBOSE = 'Syndicate Service'
8
9class SyndicateService(Service):
10
11 KIND = SERVICE_NAME
12
13 class Meta:
14 app_label = SERVICE_NAME
15 verbose_name = SERVICE_NAME_VERBOSE
16
17
18class Volume(PLCoreBase):
19
20 KIND = SERVICE_NAME
21
22 class Meta:
23 app_label = SERVICE_NAME
24 verbose_name = SERVICE_NAME_VERBOSE
25
26