mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-07-02 10:38:16 +00:00
feat: Add new status actions for call history, codec cameras, room presets, content sharing, room event schedule, shutdown prompt, and tech password messengers
This commit is contained in:
parent
91aa0efa5f
commit
b9dcec587d
9 changed files with 16 additions and 9 deletions
|
|
@ -33,7 +33,12 @@ public class IRoomEventScheduleMessenger : MessengerBase
|
|||
protected override void RegisterActions()
|
||||
{
|
||||
AddAction("/saveScheduledEvents", (id, content) => SaveScheduledEvents(content.ToObject<List<ScheduledEventConfig>>()));
|
||||
AddAction("/status", (id, content) =>
|
||||
AddAction("/fullStatus", (id, content) =>
|
||||
{
|
||||
var events = _room.GetScheduledEvents();
|
||||
SendFullStatus(events, id);
|
||||
});
|
||||
AddAction("/roomEventStatus", (id, content) =>
|
||||
{
|
||||
var events = _room.GetScheduledEvents();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue