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

Issue #3490462: Test #4227

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -332,3 +332,22 @@ function social_group_flexible_group_update_130008(): void {
->set('content', $content)
->save();
}

/**
* Implements hook_update_dependencies().
*/
function social_group_flexible_group_update_dependencies(): array {
// Just for test.
$dependencies['social_group_flexible_group'][130009] = [
'social_group_request' => 13002,
];

return $dependencies;
}

/**
* Revoke permissions for Authenticated (outsider) group role.
*/
function social_group_flexible_group_update_130009(): void {
// Just for test. Do nothing.
}
Loading