Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ability to keep slack integration but remove 'log in with slack' from the login screen. #7138

Closed
broken-wheel opened this issue Jun 24, 2024 · 3 comments
Labels
bug self-hosted Issues related to self-hosting the code

Comments

@broken-wheel
Copy link

I have a self-hosted version. I have OIDC login and slack integration. However, I want to show only the OIDC login and not the 'log in with Slack' in the login screen.

I believe that even with the managed version I cannot have slack integration without also exposing slack login.

I am cross-posting from #7116 because I am not sure if this is already supported and I just don't know how.

@tommoor
Copy link
Member

tommoor commented Jun 24, 2024

Currently there is no authentication provider management in the UI, but you should be able to do this by finding the associated slack row in authentication_providers table and changing the enabled column to false.

Closing as we have an existing issue to track the management side of things #1945

@tommoor tommoor closed this as completed Jun 24, 2024
@tommoor tommoor added the self-hosted Issues related to self-hosting the code label Jun 24, 2024
@broken-wheel
Copy link
Author

Thanks, that worked.
For posterity:

  • authentication_providers table didn't have a slack row.
  • So, I created a new row with slack disabled using:
INSERT INTO authentication_providers(id, name, "providerId", "teamId", enabled, "createdAt") VALUES (gen_random_uuid(),'slack', 'TXXXXXXXX', 'team-uuid-from-teams-table', FALSE, '2024-06-24T00:00:00.000Z');

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug self-hosted Issues related to self-hosting the code
Projects
None yet
Development

No branches or pull requests

2 participants