mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
18 lines
322 B
Ruby
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
|