7 lines
129 B
Plaintext
7 lines
129 B
Plaintext
|
create_user = (fn email <string>, name <option(string)>) <map> {
|
||
|
{
|
||
|
email = email
|
||
|
username = (either_or username email)
|
||
|
}
|
||
|
}
|