diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-05 23:42:40 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-05 23:42:40 +0100 |
commit | ab80ebdeecf9410c5b43dde333b2e036e1198e24 (patch) | |
tree | 5526ec2ad37df18bb07ff830e9fc18b22457f446 /app/controllers | |
parent | 6045b6cb1880b27e8b21799b9501a794a5f5b88b (diff) |
Adjusting design of profile and entry pages, linkify mentions in statuses
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/accounts_controller.rb | 2 | ||||
-rw-r--r-- | app/controllers/stream_entries_controller.rb | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index 2848ea62e..6fbbf97e3 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -1,4 +1,6 @@ class AccountsController < ApplicationController + layout 'public' + before_action :set_account before_action :set_webfinger_header diff --git a/app/controllers/stream_entries_controller.rb b/app/controllers/stream_entries_controller.rb index c5aebb9da..cbf7bfdff 100644 --- a/app/controllers/stream_entries_controller.rb +++ b/app/controllers/stream_entries_controller.rb @@ -1,4 +1,6 @@ class StreamEntriesController < ApplicationController + layout 'public' + before_action :set_account before_action :set_stream_entry |