mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
7 lines
No EOL
203 B
Python
7 lines
No EOL
203 B
Python
from django.core.management.base import BaseCommand
|
|
from apps.statistics.models import MFeedback
|
|
|
|
class Command(BaseCommand):
|
|
|
|
def handle(self, *args, **options):
|
|
MFeedback.collect_feedback() |