forked from ScoDoc/ScoDoc
Lève contrainte d'unicité sur les mails des utiulisateurs
This commit is contained in:
parent
b0717e35e0
commit
69914986c4
@ -24,9 +24,9 @@ Développement en cours, certaines pages fonctionnent, d'autres pas.
|
||||
|
||||
### État actuel (13 juillet 21)
|
||||
|
||||
- passage à l'unicode en cours (E/S à revoir).
|
||||
- passage à l'unicode en cours (certaines E/S encore à revoir).
|
||||
|
||||
- pas d'excel, pdf non testé (mais devrait marcher ?).
|
||||
- pas d'import/export excel.
|
||||
|
||||
**En cours:**
|
||||
|
||||
@ -87,6 +87,10 @@ Puis initialisation de l'appli:
|
||||
|
||||
flask user-db-init
|
||||
|
||||
Et saisie du mot de passe `admin`:
|
||||
|
||||
flask user-password admin
|
||||
|
||||
On peut ensuite créer des utilisateurs tests avec:
|
||||
|
||||
flask user-create toto Ens RT
|
||||
|
@ -31,7 +31,7 @@ class User(UserMixin, db.Model):
|
||||
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
user_name = db.Column(db.String(64), index=True, unique=True)
|
||||
email = db.Column(db.String(120), index=True, unique=True)
|
||||
email = db.Column(db.String(120))
|
||||
|
||||
nom = db.Column(db.String(64))
|
||||
prenom = db.Column(db.String(64))
|
||||
|
@ -1,38 +1,34 @@
|
||||
alembic==1.6.5
|
||||
Babel==2.9.1
|
||||
blinker==1.4
|
||||
click==8.0.1
|
||||
dnspython==2.1.0
|
||||
dominate==2.6.0
|
||||
email-validator==1.1.3
|
||||
Flask==2.0.1
|
||||
Flask-Babel==2.0.0
|
||||
Flask-Bootstrap==3.3.7.1
|
||||
Flask-Login==0.5.0
|
||||
Flask-Mail==0.9.1
|
||||
Flask-Migrate==3.0.1
|
||||
Flask-Moment==1.0.1
|
||||
Flask-SQLAlchemy==2.5.1
|
||||
Flask-WTF==0.15.1
|
||||
greenlet==1.1.0
|
||||
html2text==2020.1.16
|
||||
idna==3.2
|
||||
importlib-metadata==4.6.1
|
||||
itsdangerous==2.0.1
|
||||
Jinja2==3.0.1
|
||||
Mako==1.1.4
|
||||
MarkupSafe==2.0.1
|
||||
Pillow==8.3.1
|
||||
psycopg2==2.9.1
|
||||
PyJWT==2.1.0
|
||||
python-dateutil==2.8.1
|
||||
python-dotenv==0.18.0
|
||||
python-editor==1.0.4
|
||||
pytz==2021.1
|
||||
six==1.16.0
|
||||
SQLAlchemy==1.4.20
|
||||
typing-extensions==3.10.0.0
|
||||
visitor==0.1.3
|
||||
Werkzeug==2.0.1
|
||||
WTForms==2.3.3
|
||||
zipp==3.5.0
|
||||
asn1crypto==0.24.0
|
||||
certifi==2018.8.24
|
||||
chardet==3.0.4
|
||||
configparser==3.5.0b2
|
||||
cracklib==2.9.6
|
||||
cryptography==2.6.1
|
||||
docutils==0.14
|
||||
entrypoints==0.3
|
||||
enum34==1.1.6
|
||||
gyp==0.1
|
||||
icalendar==4.0.3
|
||||
idna==2.6
|
||||
ipaddress==1.0.17
|
||||
jaxml==3.1
|
||||
keyring==17.1.1
|
||||
keyrings.alt==3.1.1
|
||||
olefile==0.46
|
||||
Pillow==5.4.1
|
||||
psycopg2==2.7.7
|
||||
pycrypto==2.6.1
|
||||
Pygments==2.3.1
|
||||
PyGObject==3.30.4
|
||||
pyOpenSSL==19.0.0
|
||||
PyRSS2Gen==1.1
|
||||
python-dateutil==2.7.3
|
||||
pytz==2019.1
|
||||
pyxdg==0.25
|
||||
reportlab==3.5.13
|
||||
requests==2.21.0
|
||||
roman==2.0.0
|
||||
SecretStorage==2.3.1
|
||||
six==1.12.0
|
||||
urllib3==1.24.1
|
||||
virtualenv==15.1.0
|
||||
|
Loading…
Reference in New Issue
Block a user