> > > - It seems that the Group management by admin users is
> incomplete :
> > > role management seems to work but group management doesn't. >
> > Besides, the "user group assignement screen" is missing.
When a new user is created, the user is granted the a configurable set
of roles under the default Jetspeed group.
In Jetspeed, all user/role relationships are always under the default
Jetspeed group:
CREATE TABLE TURBINE_USER_GROUP_ROLE
(
USER_ID integer NOT NULL,
GROUP_ID integer NOT NULL,
ROLE_ID integer NOT NULL,
PRIMARY KEY(USER_ID,GROUP_ID,ROLE_ID)
);
With our current Turbine model, User/Role relationships always involve a
Group.
IMO - groups should be called resources. I would like to see a new group
table, which is simply a grouping of users. But that's just my
opinion....
Also In the JR.P you can configure the default roles to assign to a new
user when created:
services.JetspeedSecurity.newuser.roles=user
These roles are always assigned under the Jetspeed group.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>