Change default avatar, redirect to home after sign up

This commit is contained in:
Eugen Rochko
2016-03-21 17:18:30 +01:00
parent 9d55529318
commit 02696a063e
4 changed files with 9 additions and 4 deletions

View File

@ -7,8 +7,12 @@
= render partial: 'header'
.activity-stream
- @statuses.each do |status|
= render partial: 'stream_entries/status', locals: { status: status, include_threads: false, is_successor: false, is_predecessor: false }
- if @statuses.empty?
.accounts-grid
= render partial: 'nothing_here'
- else
.activity-stream
- @statuses.each do |status|
= render partial: 'stream_entries/status', locals: { status: status }
= will_paginate @statuses, pagination_options