forked from wallabag/wallabag
CS
This commit is contained in:
@ -50,7 +50,7 @@ class EntryController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows unread entries for current user
|
||||
* Shows unread entries for current user.
|
||||
*
|
||||
* @Route("/unread", name="unread")
|
||||
*
|
||||
@ -70,7 +70,7 @@ class EntryController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows read entries for current user
|
||||
* Shows read entries for current user.
|
||||
*
|
||||
* @Route("/archive", name="archive")
|
||||
*
|
||||
@ -90,7 +90,7 @@ class EntryController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows starred entries for current user
|
||||
* Shows starred entries for current user.
|
||||
*
|
||||
* @Route("/starred", name="starred")
|
||||
*
|
||||
@ -110,7 +110,7 @@ class EntryController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows entry content
|
||||
* Shows entry content.
|
||||
*
|
||||
* @param Entry $entry
|
||||
*
|
||||
@ -129,7 +129,7 @@ class EntryController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Changes read status for an entry
|
||||
* Changes read status for an entry.
|
||||
*
|
||||
* @param Request $request
|
||||
* @param Entry $entry
|
||||
@ -154,7 +154,7 @@ class EntryController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Changes favorite status for an entry
|
||||
* Changes favorite status for an entry.
|
||||
*
|
||||
* @param Request $request
|
||||
* @param Entry $entry
|
||||
@ -179,7 +179,7 @@ class EntryController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes entry
|
||||
* Deletes entry.
|
||||
*
|
||||
* @param Request $request
|
||||
* @param Entry $entry
|
||||
@ -205,7 +205,7 @@ class EntryController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the logged user can manage the given entry
|
||||
* Check if the logged user can manage the given entry.
|
||||
*
|
||||
* @param Entry $entry
|
||||
*/
|
||||
|
||||
@ -11,7 +11,7 @@ use Wallabag\CoreBundle\Entity\Entry;
|
||||
class RssController extends Controller
|
||||
{
|
||||
/**
|
||||
* Shows unread entries for current user
|
||||
* Shows unread entries for current user.
|
||||
*
|
||||
* @Route("/{username}/{token}/unread.xml", name="unread_rss", defaults={"_format"="xml"})
|
||||
* @ParamConverter("user", class="WallabagCoreBundle:User", converter="username_rsstoken_converter")
|
||||
@ -35,7 +35,7 @@ class RssController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows read entries for current user
|
||||
* Shows read entries for current user.
|
||||
*
|
||||
* @Route("/{username}/{token}/archive.xml", name="archive_rss")
|
||||
* @ParamConverter("user", class="WallabagCoreBundle:User", converter="username_rsstoken_converter")
|
||||
@ -59,7 +59,7 @@ class RssController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows starred entries for current user
|
||||
* Shows starred entries for current user.
|
||||
*
|
||||
* @Route("/{username}/{token}/starred.xml", name="starred_rss")
|
||||
* @ParamConverter("user", class="WallabagCoreBundle:User", converter="username_rsstoken_converter")
|
||||
|
||||
@ -30,9 +30,10 @@ class SecurityController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Request forgot password: show form
|
||||
* Request forgot password: show form.
|
||||
*
|
||||
* @Route("/forgot-password", name="forgot_password")
|
||||
*
|
||||
* @Method({"GET", "POST"})
|
||||
*/
|
||||
public function forgotPasswordAction(Request $request)
|
||||
@ -73,9 +74,10 @@ class SecurityController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Tell the user to check his email provider
|
||||
* Tell the user to check his email provider.
|
||||
*
|
||||
* @Route("/forgot-password/check-email", name="forgot_password_check_email")
|
||||
*
|
||||
* @Method({"GET"})
|
||||
*/
|
||||
public function checkEmailAction(Request $request)
|
||||
@ -93,9 +95,10 @@ class SecurityController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset user password
|
||||
* Reset user password.
|
||||
*
|
||||
* @Route("/forgot-password/{token}", name="forgot_password_reset")
|
||||
*
|
||||
* @Method({"GET", "POST"})
|
||||
*/
|
||||
public function resetAction(Request $request, $token)
|
||||
|
||||
Reference in New Issue
Block a user