chinwagsocial/app/controllers/profile_controller.rb
2016-02-26 20:48:20 +01:00

18 lines
322 B
Ruby

class ProfileController < ApplicationController
before_action :set_account
def show
end
def entry
@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)
end
end