mirror of
https://github.com/Mailu/Mailu.git
synced 2025-06-02 23:17:26 +02:00
Add utility functions to manage.py
This commit is contained in:
parent
b622269f60
commit
014993ee6e
@ -1,4 +1,35 @@
|
|||||||
from freeposte import manager
|
from freeposte import manager, db
|
||||||
|
from freeposte.admin import models
|
||||||
|
|
||||||
|
|
||||||
|
@manager.command
|
||||||
|
def flushdb():
|
||||||
|
""" Flush the database
|
||||||
|
"""
|
||||||
|
db.drop_all()
|
||||||
|
|
||||||
|
|
||||||
|
@manager.command
|
||||||
|
def initdb():
|
||||||
|
""" Initialize the database
|
||||||
|
"""
|
||||||
|
db.create_all()
|
||||||
|
|
||||||
|
|
||||||
|
@manager.command
|
||||||
|
def admin(localpart, domain_name, password):
|
||||||
|
""" Create an admin user
|
||||||
|
"""
|
||||||
|
domain = models.Domain(name=domain)
|
||||||
|
user = models.User(
|
||||||
|
localpart=localpart,
|
||||||
|
domain=domain,
|
||||||
|
global_admin=True,
|
||||||
|
password=hash.sha512_crypt.encrypt(password)
|
||||||
|
)
|
||||||
|
db.session.add(domain)
|
||||||
|
db.session.add(user)
|
||||||
|
db.session.commit()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user