Edgewall Software

Changes between Version 67 and Version 68 of TracTickets


Ignore:
Timestamp:
Apr 15, 2015, 5:49:53 PM (9 years ago)
Author:
Jesus Franco Martínez <jefrancomix@…>
Comment:

how to remove entries/session id's from dropdown list

Legend:

Unmodified
Added
Removed
Modified
  • TracTickets

    v67 v68  
    8585To appear in the dropdown list, a user needs be registered with the project, ie a user session should exist in the database. Such an entry is automatically created in the database the first time the user submits a change in the project, for example when editing the user's details in the ''Settings'' page, or simply by authenticating if the user has a login. Also, the user must have `TICKET_MODIFY` [TracPermissions permissions].
    8686
     87You'll find ''overpopulated'' this dropdown list if you have registered previously users than were later removed from the users list, they won't disappear from the sessions list. In order to check this sessions and purge if you need to, you can use the trac-admin suite for this:
     88  View all sessions:
     89    trac-admin `environment` session list
     90  Remove a session:
     91    trac-admin `environment` session delete `SID`
     92
    8793'''Notes:'''
    8894 - If you need serious flexibility and aren't afraid of a little plugin coding of your own, see [http://trac-hacks.org/wiki/FlexibleAssignToPlugin FlexibleAssignTo].