fix labtour, remove credentials from client
This commit is contained in:
parent
c2bcda59b6
commit
ed678478f8
@ -14,14 +14,6 @@ import time
|
|||||||
import glob
|
import glob
|
||||||
|
|
||||||
from credentials import *
|
from credentials import *
|
||||||
EMAIL_ACCOUNT = "bzigr02"
|
|
||||||
EMAIL_FOLDER = "INBOX"
|
|
||||||
EMAIL_ADDRESS = 'etho2020registration@biologie.uni-tuebingen.de'
|
|
||||||
EMAIL_REPLY = 'etho2020@biologie.uni-tuebingen.de'
|
|
||||||
SMTP_SERVER = 'smtpserv.uni-tuebingen.de'
|
|
||||||
IMAP_SERVER = 'mailserv.uni-tuebingen.de'
|
|
||||||
EMAIL_PSWD = "4npBaMv9"
|
|
||||||
|
|
||||||
|
|
||||||
PARTICIPANTS_FOLDER = 'participants'
|
PARTICIPANTS_FOLDER = 'participants'
|
||||||
|
|
||||||
@ -157,7 +149,7 @@ class Participation(object):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def labtour(self):
|
def labtour(self):
|
||||||
return self._lab_tour.split(",")
|
return [] if len(self._lab_tour.strip()) == 0 else self._lab_tour.split(",")
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def valid(self):
|
def valid(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user