Skip to content
Snippets Groups Projects
Commit 5ddad412 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Do not display non-Status stream entries anymore

parent dbd80465
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ class StreamEntriesController < ApplicationController
end
def set_stream_entry
@stream_entry = @account.stream_entries.find(params[:id])
@stream_entry = @account.stream_entries.where(activity_type: 'Status').find(params[:id])
@type = @stream_entry.activity_type.downcase
raise ActiveRecord::RecordNotFound if @stream_entry.activity.nil? || (@stream_entry.hidden? && (@stream_entry.activity_type != 'Status' || (@stream_entry.activity_type == 'Status' && !@stream_entry.activity.permitted?(current_account))))
......
......@@ -55,7 +55,7 @@ class StreamEntry < ApplicationRecord
end
def activity
!new_record? ? send(activity_type.underscore) : super
!new_record? ? send(activity_type.underscore) || super : super
end
private
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment