Add pagination to most places and fix cards pagination

This commit is contained in:
Stanko K.R.
2025-12-09 12:43:45 +01:00
parent eb787fb590
commit f3ff0c605e
8 changed files with 7 additions and 9 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ class UsersController < ApplicationController
before_action :ensure_permission_to_change_user, only: %i[ update destroy ]
def index
@users = Current.account.users.active.alphabetically
set_page_and_extract_portion_from Current.account.users.active.alphabetically
end
def show