Skip to content

Commit

Permalink
feat: add enable_end_meeting_button status
Browse files Browse the repository at this point in the history
  • Loading branch information
stakach committed Sep 18, 2023
1 parent 9856d76 commit 4adc05b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/place/bookings.cr
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class Place::Bookings < PlaceOS::Driver

hide_meeting_details: false,
hide_meeting_title: false,
enable_end_meeting_button: false,

# use this to expose arbitrary fields to influx
# expose_for_analytics: {"binding" => "key->subkey"},
Expand Down Expand Up @@ -165,6 +166,8 @@ class Place::Bookings < PlaceOS::Driver
# min and max meeting duration
self[:min_duration] = setting?(Int32, :min_duration) || 15
self[:max_duration] = setting?(Int32, :max_duration) || 480

self[:enable_end_meeting_button] = setting?(Bool, :enable_end_meeting_button) || false
end

# This is how we check the rooms status
Expand Down

0 comments on commit 4adc05b

Please sign in to comment.