Yo. > -----Original Message----- > From: Dani-Blr > Sent: Thursday, June 07, 2012 2:55 PM > To: Trac Users > Subject: [Trac] MILESTONE_CREATE and MILESTONE_ADMIN permission view issue > > Hi All, > > I have only MILESTONE_MODIFY and MILESTONE_VIEW in my trac user > permission list. > But I need to configure basic permissions MILESTONE_CREATE and > probably MILESTONE_ADMIN to a user. > My issue here is I don't see these permissions in my trac admin user > permissions list. > > Can any one please help me on this? > > Thanks, > Dani. > > --
I'll use "ta" to mean /python/scripts/trac-admin. Cd to your trac env directory (so that pwd returns the directory of your trac environment). ta . permission list should give you the permissions of all users in the system including an handy list at the bottom "Available actions:" ta . permission list | grep MILESTONE_CREATE and ta . permission list | grep MILESTONE_ADMIN should return something. If they don't then your problem is far beyond me. If they do, run ta . permission add <user> <permission> where user is the user for whom you want to add the permission and permission is either MILESTONE_CREATE or MILESTONE_ADMIN. Good luck! Aaron -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.
