Massimo apology, no understand.

Sorry if poorly formulated question, do not speak English and use google to
translate.

The registration form I made. working, and stored in the database correctly.

My doubts began when I realized I lost functionality with respect to the
registration form by default.

also not to create a group for new users[1], Is there any other
functionality that is lost when working as I am doing?
Am I doing my application less secure, creating myself my registration form?

_______

1  Authorization

Once a new user is registered, a new group is created to contain the user.
The role of the new user is conventionally "user_[id]" where [id] is the id
of the newly created id. The creation of the group can be disabled with

auth.settings.create_user_groups = False

although we do not suggest doing so.




2010/11/29 mdipierro <mdipie...@cs.depaul.edu>

> Lots.
>
> this
>
> form=SQLFORM.factory (table1, table2)
> form.accepts(...)
>
> will not do any database IO
>
> On Nov 29, 4:28 pm, appydev <appy...@gmail.com> wrote:
> > Greetings.
> >
> > As above. I wanted to build a registration form to fill two tables,
> > auth_user and teacher.
> >
> > I use SQLFORM.factory (table1, table2) to create the form.
> http://www.web2pyslices.com/main/slices/take_slice/102to fill the tables.
> > And auth.settings.actions_disabled = ['register'] to disable the
> > registration form created by default.
> > (Thanks again to massimo and to mr.freeze)
> >
> > But later I realized that this way is no longer created a new group to
> > contain the user, automatically.
> > As is indicated by:
> > auth.settings.create_user_groups = True
> >
> > My question is:
> >
> > Is there any other functionality that is lost when working as I am doing?
> > Am I doing my application less secure, creating myself my registration
> form?
>

Reply via email to