-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
solved dashboard init process causing the polling to never happen and…
… filter only periodic bots
- Loading branch information
RduMarais
committed
Dec 21, 2022
1 parent
70acf73
commit 010c923
Showing
7 changed files
with
118 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from .models import Meeting | ||
|
||
|
||
def check_meetings_clean_stop(): | ||
for m in Meeting.objects.all(): | ||
if(m._is_running): | ||
m._is_running = False | ||
m.save() |
Oops, something went wrong.