This commit is contained in:
mgabdev 2020-05-22 17:05:40 -04:00
parent 216ff755c9
commit 8b020cf47f
2 changed files with 3 additions and 6 deletions

View File

@ -12,14 +12,12 @@ class Api::V1::NotificationsController < Api::BaseController
DEFAULT_NOTIFICATIONS_LIMIT = 20
def index
# @notifications = load_notifications
@notifications = []
@notifications = load_notifications
render json: @notifications, each_serializer: REST::NotificationSerializer, relationships: StatusRelationshipsPresenter.new(target_statuses_from_notifications, current_user&.account_id)
end
def show
# @notification = current_account.notifications.find(params[:id])
@notification = []
@notification = current_account.notifications.find(params[:id])
render json: @notification, serializer: REST::NotificationSerializer
end

View File

@ -8,8 +8,7 @@ class Api::V1::Timelines::HomeController < Api::BaseController
respond_to :json
def show
# @statuses = load_statuses
@statuses = []
@statuses = load_statuses
render json: @statuses,
each_serializer: REST::StatusSerializer,
relationships: StatusRelationshipsPresenter.new(@statuses, current_user&.account_id),