Question
I want to create a small personal account for clients. It is necessary to create/authorize users in Totum.
Answer
Yes, it's possible. If you want users to register themselves, create a Quick form that will add the user to the Users table. For greater security, you can create an intermediate table where applications will be added and processed by cron or daemons to add users. To create a user, you need to add a row to the users table.
Code for adding a user to the users table:
=: insert(table: 'users'; field: 'login' = #login; field: 'pass' = #pass; field: 'email' = #email; log: true)