Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Can't see any issues (open or closed) after deleting groups/schemes

web-app

I've just atempted to clean up the permissions on our Gemini install as there were security schemes per project and other legacy stuff created when we migrated to v3.0 - it was a real mess.

I wanted to start from the begining so I deleted all my user groups (even system groups) and all the security schemes and started to recreate. I also deleted the old field visibility schemes as we decided not to use them.

I've created one security scheme and assigned all permissions to the newly created developers group but there are no issues visible.

What have I done wrong?

prof711
· 1
prof711
Replies (4)
helpful
0
not helpful

You have probably removed the "EVERYONE" global group which is the default visibility scheme for the issues. Can you check that?


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Yes, I've removed the Everyone group, in fact I removed all groups before creating the new ones. How can I reinstate the default groups? or do you suggest something else?


prof711
· 1
prof711
helpful
0
not helpful

Run this:
SET IDENTITYINSERT geminiglobalgroups ON
INSERT INTO geminiglobalgroups (globalgroupid,globalgroupname,globalgroupdesc,globalgroupsystem)
    VALUES (1, N'Everyone', N'All users within Gemini', 1)
INSERT INTO gemini
globalgroups (globalgroupid,globalgroupname,globalgroupdesc,globalgroupsystem)
    VALUES (2, N'Gemini Administrators', N'Gemini administrators', 1)
INSERT INTO geminiglobalgroups (globalgroupid,globalgroupname,globalgroupdesc,globalgroupsystem)
    VALUES (3, N'Everyone (Authenticated)', N'Authenticated users', 1)
SET IDENTITY
INSERT gemini_globalgroups OFF


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

Thanks, seems to have worked now I've added all users back in to the EVERYONE group.


prof711
· 1
prof711