Better wording

This commit is contained in:
David Heinemeier Hansson
2025-11-28 12:43:34 +01:00
parent 15db4033bc
commit 8e94a4aa1e
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ class Rooms::ClosedsController < RoomsController
before_action :ensure_can_administer, only: %i[ update ]
before_action :remember_last_room_visited, only: :show
before_action :force_room_type, only: %i[ edit update ]
before_action :ensure_eligible_to_create_rooms, only: %i[ new create ]
before_action :ensure_permission_to_create_rooms, only: %i[ new create ]
DEFAULT_ROOM_NAME = "New room"

View File

@@ -3,7 +3,7 @@ class Rooms::OpensController < RoomsController
before_action :ensure_can_administer, only: %i[ update ]
before_action :remember_last_room_visited, only: :show
before_action :force_room_type, only: %i[ edit update ]
before_action :ensure_eligible_to_create_rooms, only: %i[ new create ]
before_action :ensure_permission_to_create_rooms, only: %i[ new create ]
DEFAULT_ROOM_NAME = "New room"

View File

@@ -31,7 +31,7 @@ class RoomsController < ApplicationController
head :forbidden unless Current.user.can_administer?(@room)
end
def ensure_eligible_to_create_rooms
def ensure_permission_to_create_rooms
if Current.account.restrict_room_creation_to_administrators? && !Current.user.administrator?
head :forbidden
end