0b5f75339e
* Fixed agenda permissions * Renamed assignment to assignments, fixed assignments permission names * Renamed mediafile to mediafiles * Renamed motion to motions. Fixed motions permission names
12 lines
351 B
Python
12 lines
351 B
Python
from haystack import indexes
|
|
from .models import Motion
|
|
|
|
|
|
class Index(indexes.SearchIndex, indexes.Indexable):
|
|
text = indexes.EdgeNgramField(document=True, use_template=True)
|
|
modelfilter_name = "Motions" # verbose_name of model
|
|
modelfilter_value = "motions.motion" # 'app_name.model_name'
|
|
|
|
def get_model(self):
|
|
return Motion
|