Comment 9 for bug 545111

Revision history for this message
Łukasz Czyżykowski (lukasz-czyzykowski) wrote :

QA Notes (update):

The config bit should be added to local.cfg file and the server have to be restarted to this configuration being taken into account.

The team adding thing is easy on staging/production as teams exists in production db. Only thing required is quick session in python shell:

>>> from identityprovider.models import Person, Account
>>> account = Account.objects.get_by_email("<email address hidden>")
>>> team = Person.objects.get(name="canonical-isd-hackers")
>>> team.team_paerticipations.create(person=account.person)
>>> account.person.in_team("canonical-isd-hackers")
True