]> Raphaël G. Git Repositories - userbundle/commitdiff
Rename user bundle route alias
authorRaphaël Gertz <git@rapsys.eu>
Thu, 7 Mar 2024 17:10:26 +0000 (18:10 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 7 Mar 2024 17:10:26 +0000 (18:10 +0100)
Repository/UserRepository.php

index db4d84e5cdff0e32df9b54f17ff0203f979b5539..9f45b95ad3fd70f82121265513d3aaa1e610929d 100644 (file)
@@ -123,7 +123,7 @@ SQL;
                                'pseudonym' => $data['pseudonym'],
                                'groups' => [],
                                'slug' => $this->slugger->slug($data['pseudonym']),
-                               'link' => $this->router->generate('rapsys_user_edit', ['mail' => $short = $this->slugger->short($data['mail']), 'hash' => $this->slugger->hash($short)])
+                               'link' => $this->router->generate('rapsysuser_edit', ['mail' => $short = $this->slugger->short($data['mail']), 'hash' => $this->slugger->hash($short)])
                        ];
 
                        //With groups
@@ -137,7 +137,7 @@ SQL;
                                        $ret[$data['id']]['groups'][$id] = [
                                                'title' => $group = $this->translator->trans($titles[$k]),
                                                #'slug' => $this->slugger->slug($group)
-                                               #'link' => $this->router->generate('rapsys_user_group_view', ['id' => $id, 'slug' => $this->slugger->short($group)])
+                                               #'link' => $this->router->generate('rapsysuser_group_view', ['id' => $id, 'slug' => $this->slugger->short($group)])
                                        ];
                                }
                        }