Commit d4bd6dd2 authored by Jeremy Watson's avatar Jeremy Watson

Re-added JS snippet to enable Group SAML in docs

parent 8999194e
# SAML SSO for Groups (Beta) **[PREMIUM]**
> Introduced in [GitLab Premium](https://about.gitlab.com/pricing/) 10.7.
> Introduced in [GitLab Premium](https://about.gitlab.com/pricing/) 11.0.
This allows SAML to be used for adding users to a group on GitLab.com and other instances where using [site-wide SAML](../../../integration/saml.md) is not possible.
## Enable the beta
Enable the beta by setting the `enable_group_saml` cookie. This can be done with the below JavaScript snippet:
```javascript
javascript:void((function(d){document.cookie='enable_group_saml=' + (document.cookie.indexOf('enable_group_saml=true') >= 0 ? 'false' : 'true') + ';domain=.' + window.location.hostname + ';path=/;expires=' + new Date(Date.now() + 31536000000).toUTCString(); location.reload();})(document));
```
## How to configure
1. Navigate to the group and click Settings -> SAML SSO.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment