Skip to content

Commit

Permalink
[SD-494] Enable linkset endpoint. (#563)
Browse files Browse the repository at this point in the history
  • Loading branch information
MdNadimHossain authored Dec 12, 2024
1 parent 7c31c61 commit bab014e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions modules/tide_site/tide_site.install
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,12 @@ function tide_site_update_10002() {
}
}
}

/**
* Enable linkset.
*/
function tide_site_update_10003() {
$system_feature_flags = \Drupal::configFactory()->getEditable('system.feature_flags');
$system_feature_flags->set('linkset_endpoint', TRUE)
->save();
}

0 comments on commit bab014e

Please sign in to comment.