Forum OpenACS Development: Who is SWA and how do I become one?

After loosing my SWA account, I had to make myself SWA manually. Here is how you answer the questions in Postgres:

Who is SWA:

select p.party_id, email from all_object_party_privilege_map aoppm, parties p where p.party_id = aoppm.party_id and object_id=-4 and privilege='admin';

Make my party_id SWA:

select acs_permission__grant_permission(-4, :party_id, 'admin');

Collapse
Posted by Tom Ayles on

Cross reference to this post.