summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-07-17 00:42:54 +0200
committererdgeist <erdgeist@erdgeist.org>2026-07-17 00:42:54 +0200
commitc810d1aa93a267dd8fcf8984c5d0b125629efa31 (patch)
treeb0dc135931390738b8965a47d33ba3b5dd16f251 /app/controllers
parent855fc9c9c85720b5e0c6b9086083165492e2a864 (diff)
Cutover to new Recent Changes widget
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/admin_controller.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb
index 37fd78b..40cfbdc 100644
--- a/app/controllers/admin_controller.rb
+++ b/app/controllers/admin_controller.rb
@@ -7,6 +7,7 @@ class AdminController < ApplicationController
7 def index 7 def index
8 @drafts = Node.drafts_and_autosaves(current_user_id: current_user.id).limit(5) 8 @drafts = Node.drafts_and_autosaves(current_user_id: current_user.id).limit(5)
9 @recent_changes = Node.recently_changed.limit(5) 9 @recent_changes = Node.recently_changed.limit(5)
10 @actions = NodeAction.order(:occurred_at => :desc, :id => :desc).limit(5)
10 end 11 end
11 12
12 def conventions 13 def conventions