Support setting default blog visibility on instance - #148
Merged
Conversation
This adds a new `default_visibility` config value that lets an instance admin set the visibility of newly created collections. Ref T675
Member
Author
|
Need to verify that creating a collection via API still works, then we can merge. |
instead of App Ref T675
instead of updating it later. This is more correct behavior, prevents an additional query, and ensures that potential collection-creation when claiming posts also respects the default (which it didn't before). Ref T675
(in returned JSON data) Ref T675
Member
Author
|
Verified collection creation via API works, refactored some things, and added documentation. Merging now. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This adds a new
default_visibilityconfig value that lets an instance admin set the visibility of newly created collections: Unlisted (current default), Public, or Private.This can also be set via the Admin UI.
Resolves T675.