Completed
Pull Request — master (#390)
by
unknown
25s
created

CustomAction   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
dl 0
loc 2
rs 10
1
from actstream.models import AbstractAction, AbstractFollow
2
from django.db import models
3
4
class CustomAction(AbstractAction):
5
    quest = models.CharField(max_length=200)
6
7
8
class CustomFollow(AbstractFollow):
9
    is_special = models.BooleanField(default=False)
10