2016-02-22 16:00:20 +01:00
|
|
|
class ProfileController < ApplicationController
|
2016-02-26 20:48:20 +01:00
|
|
|
before_action :set_account
|
|
|
|
|
2016-02-22 16:00:20 +01:00
|
|
|
def show
|
|
|
|
end
|
2016-02-23 19:17:37 +01:00
|
|
|
|
|
|
|
def entry
|
2016-02-26 20:48:20 +01:00
|
|
|
@entry = @account.stream_entries.find(params[:id])
|
|
|
|
@type = @entry.activity_type.downcase
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find_by!(username: params[:name], domain: nil)
|
2016-02-23 19:17:37 +01:00
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|