Files
catops/techdb/flightslot/custom/defpassword.py

5 lines
163 B
Python

from ..models.students import Student
def default_password(student: Student) -> str:
return f"{student.name.lower()[0]}{student.surname.lower()}{student.id}"