- Merge request !6Issue #3246426: Enable to add new routes (pages) โ (Closed) created by Antonรญn Slejลกka
- ๐ช๐ธSpain luigisa Olloki Valley
Hello,
I have tested the MR 6 patch and it works perfectly with the 2.x branch.
I think you could merge it perfectly without affecting the expected module performance.
Also I think it is very good approach and solution.
Could you please check this issue and try to merge? - Status changed to Needs review
about 1 year ago 10:49am 14 March 2024 - ๐ช๐ธSpain luigisa Olloki Valley
I have added a file as documentation of the new hook in the MR gin_login.api.php
- Status changed to RTBC
about 1 year ago 6:51pm 20 March 2024 - Status changed to Needs work
about 1 year ago 6:52pm 20 March 2024 - Status changed to Needs review
about 1 year ago 9:09am 21 March 2024 - ๐ช๐ธSpain luigisa Olloki Valley
I have generated a new RM on the 2.x branch.
https://git.drupalcode.org/project/gin_login/-/merge_requests/33
- Status changed to RTBC
12 months ago 1:21pm 18 April 2024 - ๐ฉ๐ชGermany Antonรญn Slejลกka Hannover
I have:
- added the template page--user--general (it is used in: https://www.drupal.org/project/email_tfa/issues/3247198 ๐ Integration with gin_login module Needs review ),
- reviewed the code (it looks good to me),
- tested it on our websites (it works).
- ๐ฎ๐นItaly Giuseppe87
Giuseppe87 โ changed the visibility of the branch 3246426-enable-to-add-on-2.0.x to hidden.
- ๐ฎ๐นItaly Giuseppe87
Giuseppe87 โ changed the visibility of the branch 3246426-enable-to-add-on-2.0.x to active.
- ๐ฎ๐นItaly Giuseppe87
Giuseppe87 โ changed the visibility of the branch 3246426-enable-to-add-on-2.0.x to hidden.
- ๐ฎ๐นItaly Giuseppe87
Giuseppe87 โ changed the visibility of the branch 3246426-enable-to-add-on-2.0.x to active.
- ๐ฎ๐นItaly Giuseppe87
Despite the pipeline saying the MR being mergeable, I had a conflict and can't apply the patch. I rebased the issue.
- Status changed to Needs review
12 months ago 4:38pm 23 April 2024 - Status changed to RTBC
12 months ago 6:20am 24 April 2024 - ๐ช๐ธSpain luigisa Olloki Valley
Can anyone help to merge this request? thank you very much.
- Status changed to Fixed
10 months ago 10:56am 14 June 2024 - ๐จ๐ญSwitzerland saschaeggi Zurich
Thanks everyone involved here, pushed to 2.0.x ๐
Automatically closed - issue fixed for 2 weeks with no activity.
- ๐บ๐ธUnited States jhedstrom Portland, OR
For folks wanting this with the TFA module โ , this entry gets it working:
/** * Implements hook_gin_login_route_definitions_alter(). */ function MY_MODULE_gin_login_route_definitions_alter(array &$route_definitions):void { $route_definitions['tfa.entry'] = [ 'page' => 'page__tfa', 'template' => 'page--user--general', 'preprocess functions' => ['gin_login_preprocess_ginlogin'], ]; }
- ๐จ๐ญSwitzerland saschaeggi Zurich
@jhedstorm you can create a new issue with an MR to contribute this back to gin_login