Skip to content

Instantly share code, notes, and snippets.

@normanlolx
Created January 7, 2017 21:54
Show Gist options
  • Save normanlolx/640a437004a341296c95736cba00e5d8 to your computer and use it in GitHub Desktop.
Save normanlolx/640a437004a341296c95736cba00e5d8 to your computer and use it in GitHub Desktop.
Drupal 8 user login redirect to front page
<?php
/**
* Implements hook_user_login().
*/
function MYMODULE_user_login($account) {
\Drupal::service('request_stack')->getCurrentRequest()->query->set('destination', '/');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment