Display users and invite on account/settings

This commit is contained in:
Jason Zimdars
2025-06-04 15:16:24 -05:00
parent cc03a3dcb4
commit 638bc16b4b
7 changed files with 8 additions and 29 deletions
-4
View File
@@ -6,10 +6,6 @@ class UsersController < ApplicationController
before_action :ensure_join_code_is_valid, only: %i[ new create ]
before_action :ensure_permission_to_change_user, only: %i[ update destroy ]
def index
@users = User.active
end
def new
@user = User.new
end