diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-05-10 17:09:12 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-05-10 17:09:12 +0200 |
commit | 68629f2773a056b0120b956e0cb425e73fe57cab (patch) | |
tree | 94f79c3baeec31b58d36e37515b753b9d2a02ab6 /app/controllers | |
parent | 3191c3b349f67442f3ae42be6e1b141e2392a293 (diff) | |
parent | 780d99c204df824fe959a3db00999f973a29c351 (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - app/controllers/statuses_controller.rb minor conflict because of glitch-soc's theming system - app/controllers/stream_entries_controller.rb minor conflict because of glitch-soc's theming system
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/statuses_controller.rb | 6 | ||||
-rw-r--r-- | app/controllers/stream_entries_controller.rb | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/app/controllers/statuses_controller.rb b/app/controllers/statuses_controller.rb index 53cf1c4ca..28eebda28 100644 --- a/app/controllers/statuses_controller.rb +++ b/app/controllers/statuses_controller.rb @@ -28,7 +28,11 @@ class StatusesController < ApplicationController respond_to do |format| format.html do use_pack 'public' - mark_cacheable! unless user_signed_in? + + unless user_signed_in? + skip_session! + expires_in 10.seconds, public: true + end @body_classes = 'with-modals' diff --git a/app/controllers/stream_entries_controller.rb b/app/controllers/stream_entries_controller.rb index 8cb54a148..1e16c5157 100644 --- a/app/controllers/stream_entries_controller.rb +++ b/app/controllers/stream_entries_controller.rb @@ -16,6 +16,12 @@ class StreamEntriesController < ApplicationController respond_to do |format| format.html do use_pack 'public' + + unless user_signed_in? + skip_session! + expires_in 5.minutes, public: true + end + redirect_to short_account_status_url(params[:account_username], @stream_entry.activity) if @type == 'status' end |