From 2790408a5e916d9888b38e7f0acc6818f04bc715 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Fri, 15 Jan 2021 15:36:51 -0500 Subject: [PATCH] Removed unused values from InitialStateSerializer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Removed: - unused values from InitialStateSerializer that used redis and now are in own cached api controllers for monthly_expenses_complete, trending_hashtags --- app/serializers/initial_state_serializer.rb | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/serializers/initial_state_serializer.rb b/app/serializers/initial_state_serializer.rb index 786faa44..c8be4a8c 100644 --- a/app/serializers/initial_state_serializer.rb +++ b/app/serializers/initial_state_serializer.rb @@ -29,8 +29,6 @@ class InitialStateSerializer < ActiveModel::Serializer store[:is_staff] = object.current_account.user.staff? store[:unread_count] = unread_count object.current_account store[:last_read_notification_id] = object.current_account.user.last_read_notification - store[:monthly_expenses_complete] = Redis.current.get("monthly_funding_amount") || 0 - store[:trending_hashtags] = get_trending_hashtags store[:is_first_session] = is_first_session object.current_account store[:email_confirmed] = object.current_account.user.confirmed? store[:email] = object.current_account.user.confirmed? ? '[hidden]' : object.current_account.user.email @@ -79,9 +77,4 @@ class InitialStateSerializer < ActiveModel::Serializer object.current_account.user.sign_in_count === 1 end - def get_trending_hashtags - tags = Redis.current.get("admin_trending_hashtags") || "" - return tags.strip.split(", ") - end - end