-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Cleanup some unused sharing methods from the old sharing code #12200
Conversation
@@ -65,7 +65,7 @@ public function getForm() { | |||
'allowResharing' => $this->config->getAppValue('core', 'shareapi_allow_resharing', 'yes'), | |||
'allowShareDialogUserEnumeration' => $this->config->getAppValue('core', 'shareapi_allow_share_dialog_user_enumeration', 'yes'), | |||
'enforceLinkPassword' => Util::isPublicLinkPasswordRequired(), | |||
'onlyShareWithGroupMembers' => Share::shareWithGroupMembersOnly(), | |||
'onlyShareWithGroupMembers' => $this->config->getAppValue('core', 'shareapi_only_share_with_group_members', 'no') == 'yes', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
server/lib/public/Share/IManager.php
Line 347 in b23032e
public function shareWithGroupMembersOnly(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
76ecea9
to
d6bdfe6
Compare
I know unit tests are failing ... looking into it |
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
d6bdfe6
to
248d953
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐘
CI failure is due to an unrelated trash bin problem. |
Found in my stashes ;)