mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 16:10:28 +00:00
Rename method from *username to *user
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
90f95027a8
commit
273b6f0658
3 changed files with 4 additions and 4 deletions
|
@ -227,7 +227,7 @@ class EntryController extends Controller
|
|||
public function showUnreadAction(Request $request, $page)
|
||||
{
|
||||
// load the quickstart if no entry in database
|
||||
if ($page == 1 && $this->get('wallabag_core.entry_repository')->countAllEntriesByUsername($this->getUser()->getId()) == 0) {
|
||||
if ($page == 1 && $this->get('wallabag_core.entry_repository')->countAllEntriesByUser($this->getUser()->getId()) == 0) {
|
||||
return $this->redirect($this->generateUrl('quickstart'));
|
||||
}
|
||||
|
||||
|
|
|
@ -328,7 +328,7 @@ class EntryRepository extends EntityRepository
|
|||
*
|
||||
* @return int
|
||||
*/
|
||||
public function countAllEntriesByUsername($userId)
|
||||
public function countAllEntriesByUser($userId)
|
||||
{
|
||||
$qb = $this->createQueryBuilder('e')
|
||||
->select('count(e)')
|
||||
|
|
|
@ -798,7 +798,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
|
|||
|
||||
$entryReset = $em
|
||||
->getRepository('WallabagCoreBundle:Entry')
|
||||
->countAllEntriesByUsername($user->getId());
|
||||
->countAllEntriesByUser($user->getId());
|
||||
|
||||
$this->assertEquals(0, $entryReset, 'Entries were reset');
|
||||
}
|
||||
|
@ -843,7 +843,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
|
|||
|
||||
$entryReset = $em
|
||||
->getRepository('WallabagCoreBundle:Entry')
|
||||
->countAllEntriesByUsername($user->getId());
|
||||
->countAllEntriesByUser($user->getId());
|
||||
|
||||
$this->assertEquals(0, $entryReset, 'Entries were reset');
|
||||
|
||||
|
|
Loading…
Reference in a new issue