refactor: rename controller methods for views and actions to be more consistent

add PermalinkEditor component
This commit is contained in:
Yassine Doghri 2024-12-18 16:05:25 +00:00
commit 85704bfbe0
48 changed files with 779 additions and 827 deletions

View file

@ -16,6 +16,11 @@ trait AnalyticsTrait
{
protected function registerPodcastWebpageHit(int $podcastId): void
{
// Prevent analytics hit when authenticated
if (auth()->loggedIn()) {
return;
}
helper('analytics');
set_user_session_deny_list_ip();