Move to src dir.
[edumed.git] / catalogue / search_indexes.py
diff --git a/catalogue/search_indexes.py b/catalogue/search_indexes.py
deleted file mode 100755 (executable)
index 035ce98..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-# -*- coding: utf-8 -*-
-from haystack import indexes
-from .models import Lesson
-
-
-class LessonIndex(indexes.SearchIndex, indexes.Indexable):
-    text = indexes.CharField(document=True, use_template=True)
-
-    def get_model(self):
-        return Lesson