Source code for dash.management.commands.dash_update_plugin_data

from django.core.management.base import BaseCommand

from dash.utils import update_plugin_data

[docs]class Command(BaseCommand):
[docs] def handle(self, *args, **options): """ Updates the plugin data for all dashboard entries of all users. Rules for update are specified in the plugin itself. This command shall be ran if significant changes have been made to the system for which the data shall be updated. """ update_plugin_data()
Read the Docs v: 0.2.4
Versions
latest
0.3.2
0.3
0.2.4
0.1.4
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.