forked from External/greenlight
Prevent double hyphens in room names (#2813)
This commit is contained in:
parent
f013e2b529
commit
3cec43edc3
|
@ -142,7 +142,7 @@ module ApplicationHelper
|
|||
def perm_to_record_meeting
|
||||
if recording_consent_required?
|
||||
@settings.get_value("Room Configuration Recording") != "disabled" &&
|
||||
current_user&.role&.get_permission("can_launch_recording")
|
||||
current_user&.role&.get_permission("can_launch_recording")
|
||||
else
|
||||
current_user&.role&.get_permission("can_launch_recording")
|
||||
end
|
||||
|
|
|
@ -159,7 +159,7 @@ class User < ApplicationRecord
|
|||
|
||||
def name_chunk
|
||||
charset = ("a".."z").to_a - %w(b i l o s) + ("2".."9").to_a - %w(5 8)
|
||||
chunk = name.parameterize[0...3]
|
||||
chunk = name.parameterize(separator: "")[0...3]
|
||||
if chunk.empty?
|
||||
chunk + (0...3).map { charset.to_a[rand(charset.size)] }.join
|
||||
elsif chunk.length == 1
|
||||
|
|
Loading…
Reference in New Issue