-
Notifications
You must be signed in to change notification settings - Fork 374
Gating Group Collections #1525
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
Merged
Merged
Gating Group Collections #1525
Changes from 4 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
168c204
feat(collection): gating group
a130ab1
first draft of gating group page & fixing enterprise to enterprise hub
1dbe0ba
fixup! first draft of gating group page & fixing enterprise to enterp…
0d69a94
fix build
852b4a2
fix image names & side menu wording
2001363
fix with suggestions
b3081a5
suggestions
f7ccf91
better images and more documentation
17bbe52
adding multiple sections
36e1298
Apply suggestions from code review
loicsay 04d930d
fix tag
3de55c4
Apply suggestions from code review
loicsay 8bd0660
More readable sentence
loicsay 0552bdb
capitalize
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| # Gating Group Collections | ||
|
|
||
| <Tip warning={true}> | ||
| This feature is part of the <a href="https://huggingface.co/enterprise">Enterprise Hub</a>. | ||
| </Tip> | ||
|
|
||
| Gating Group collections allows organizations to configure gate all the repos in a collection, enabling **access requests** for all models or datasets in it. | ||
loicsay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ## Manage gating group as an organization admin | ||
|
|
||
| To enable access requests, go to the collection page and click on **Gating group** in the bottom-right corner. | ||
|
|
||
| <div class="flex justify-center" style="max-width: 750px"> | ||
| <img | ||
| class="block dark:hidden !m-0" | ||
| src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/collections/gating-group-collection-disabled.webp" | ||
| alt="Hugging Face collection page with gating group collection feature disabled" | ||
| /> | ||
| <img | ||
| class="hidden dark:block !m-0" | ||
| src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/collections/dark-gating-group-collection-disabled.webp" | ||
| alt="Hugging Face collection page with gating group collection feature disabled" | ||
| /> | ||
| </div> | ||
loicsay marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| By default, gating group is disabled: click on **Configure Access Requests** to open the settings | ||
|
|
||
| <div class="flex justify-center" style="max-width: 750px"> | ||
| <img | ||
| class="block dark:hidden !m-0" | ||
| src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/collections/gating-group-disabled.webp" | ||
loicsay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| alt="Hugging Face gating group collection settings with gating disabled" | ||
| /> | ||
| <img | ||
| class="hidden dark:block !m-0" | ||
| src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/collections/dark-gating-group-disabled.webp" | ||
loicsay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| alt="Hugging Face gating group collection settings with gating disabled" | ||
| /> | ||
| </div> | ||
|
|
||
| By default, access to the repos in the collection is automatically granted to the user when requesting it. This is referred to as **automatic approval**. In this mode, any user can access your repos once they’ve shared their personal information with you. | ||
loicsay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| <div class="flex justify-center" style="max-width: 750px"> | ||
| <img | ||
| class="block dark:hidden !m-0" | ||
| src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/collections/gating-group-enabling.webp" | ||
| alt="Hugging Face gating group collection settings with automatic mode selected" | ||
| /> | ||
| <img | ||
| class="hidden dark:block !m-0" | ||
| src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/collections/dark-gating-group-enabling.webp" | ||
| alt="Hugging Face gating group collection settings with gating with automatic mode selected" | ||
loicsay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| /> | ||
| </div> | ||
|
|
||
| If you want to manually approve which users can access repos in your collection, you must set it to **manual approval**. When this is the case, you will notice a new option: | ||
loicsay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| <div class="flex justify-center" style="max-width: 750px"> | ||
| <img | ||
| class="block dark:hidden !m-0" | ||
| src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/collections/gating-group-changes.webp" | ||
| alt="Hugging Face gating group collection settings with manual review mode selected" | ||
| /> | ||
| <img | ||
| class="hidden dark:block !m-0" | ||
| src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/collections/dark-gating-group-changes.webp" | ||
| alt="Hugging Face gating group collection settings with manual review mode selected" | ||
| /> | ||
| </div> | ||
|
|
||
| **Notification frequency** lets you configure when to get notified if new users request access. It can be set to once a day or real-time. By default, emails are sent to the first 5 admins of the organization. You can also set a different email address in the **Notifications email** field. | ||
loicsay marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.