Commit Graph

10929 Commits

Author SHA1 Message Date
fusionate 99c9486ede
Voicemail - Edit: Make audio playback code consistent with other apps. 2023-11-07 02:23:12 +00:00
fusionate e8d7ac6d03
Ring Group - Edit: Make audio playback code consistent with other apps. 2023-11-07 02:22:33 +00:00
fusionate 328e3de7c5
Conference Center - Edit: Make audio playback code consistent with other apps. 2023-11-07 02:22:16 +00:00
fusionate 09f92fef5f
Call Flow - Edit: Make audio playback code consistent with other apps. 2023-11-07 02:21:54 +00:00
fusionate 62d67f3557
IVR Menu - Edit: Make playback code consistent with other apps, add playback of selected Invalid and Exit Sounds (Recordings and Sounds). 2023-11-07 02:20:45 +00:00
fusionate ff6a3ea71d
Call Center Queue - Edit: Add playback of selected Greeting and Announce Sound (Recordings and Sounds). 2023-11-07 01:56:39 +00:00
fusionate 73e3cb6ce1
Conference Center - Edit: Remove temporary code, clean up. 2023-11-07 00:56:19 +00:00
FusionPBX c12dd29293
Add ring_group_domain to the admin group 2023-11-06 13:13:03 -07:00
fusionate dd3c14e0d1
Ring Group - Edit: Adjust permission block scope for playback code. 2023-11-06 19:51:56 +00:00
fusionate 2e01fc06c5
Conference Center - Edit: Adjust permission block scope for playback code. 2023-11-06 19:51:38 +00:00
fusionate 3dcca2aa3c
Call Flow - Edit: Adjust permission block scope for playback code. 2023-11-06 19:51:02 +00:00
fusionate 22756de281
Call Flow - Edit: Add playback of selected Sound & Alternate Sound (Recordings and Sounds). 2023-11-06 19:45:40 +00:00
fusionate 548ea55660
Voicemail - Edit: Consistency updates for Greeting selection/playback code. 2023-11-06 19:44:21 +00:00
fusionate d04343043e
Ring Group - Edit: Consistency updates for Greeting selection code. 2023-11-06 19:43:35 +00:00
fusionate c649b9d7b0
Conference Center - Edit: Use sounds class for Greeting selection. 2023-11-06 19:42:34 +00:00
fusionate e5f2a697bf
Voicemail - Edit: Add playback of selected Greeting. 2023-11-06 17:12:07 +00:00
fusionate 10513ef745
Conference Center - Edit: Add playback of selected Greeting (Recordings and Sounds). 2023-11-04 01:06:01 +00:00
fusionate afc7487a40
Ring Group - Edit: Minor adjustments. 2023-11-04 01:05:01 +00:00
fusionate 64ba5e268c
Ring Group - Edit: Add playback of selected Greeting (Recordings and Sounds). 2023-11-03 20:33:02 +00:00
frytimo 372db3cc50
Patch contacts calling multiple schemas (#6826)
* improve performance for contacts app_defaults

* add app_name and app_uuid as constants in class

* performance boost by removing scanning app_defaults twice

* Update app_defaults.php

* Update schema.php

---------

Co-authored-by: FusionPBX <markjcrane@gmail.com>
2023-11-03 14:04:07 -06:00
FusionPBX 5712df1118
Update dialplan_edit.php
Fix the indentation and use not empty.
2023-11-03 13:34:45 -06:00
FusionPBX fa123ff069
Build dialplan xml from the array. More efficient to save data and xml in one step. 2023-11-03 02:18:57 -06:00
FusionPBX 9da5a10a77
Change the permission to device_profile_view 2023-11-02 23:37:42 -06:00
FusionPBX fd2516a297
Update timezones.conf.xml with tabs 2023-11-02 17:02:28 -06:00
FusionPBX 3c57c72044
Revert timezones.conf.xml 2023-11-02 16:59:25 -06:00
FusionPBX 05c52a3fdc
Update timezones.conf.xml 2023-11-02 16:51:09 -06:00
FusionPBX 65b6600e82
Changing format from 11/02 to 02 Nov
Reason for the change better worldwide support. Problem with numeric dates is that it can have a date 07/09 and does mean July 9 or September 7. In the US its standard month then day. However this isn't universal. This makes the dates confusing. So changed this to day and abbreviated month.
2023-11-02 12:45:38 -06:00
FusionPBX 71349f56b2
Fixed ring group hold_music
This commit fixes a problem for music on hold defined in global-variables and domain-variables dialplans.
2023-11-02 12:18:28 -06:00
FusionPBX 86373fd3b4
Update permission for device profiles. Use device_profile_view, device_profile_select and device_profile_edit 2023-11-01 18:43:53 -06:00
FusionPBX 3b5e21a0d8
Update app_config.php 2023-11-01 18:36:28 -06:00
volga629-1 8ed5dd4c76
New Devices permissions profile select and edit. (#6821)
* Device select permissions

* Apply device select permissions.

* Fix missing index

Fix missing index
2023-11-01 18:33:13 -06:00
FusionPBX a3dbdf7b70
Unset the domain at the before next loop 2023-10-30 20:49:21 -06:00
FusionPBX 12964eb83e
Prevent an error by casting to int 2023-10-30 20:29:56 -06:00
fusionate 834be519ba
Device - Edit: Make Provision button use first Line found on local server. 2023-10-30 19:19:56 +00:00
FusionPBX d3f37c0f84
Add Accept-Ranges for HTTP content delivery 2023-10-27 23:56:57 -06:00
FusionPBX 16b64e42fc
Add a new import for bridges 2023-10-27 21:01:23 -06:00
FusionPBX 9b1493d567
Prevent a warning if the bridge variables are disabled 2023-10-27 20:26:33 -06:00
fusionate 935774d3c0
Device - Edit: Increase width of Keys and Settings input fields. 2023-10-27 18:45:25 +00:00
emak-Corey e5025d394f
Fix vm_disk_quota (#6814)
The current condition #vm_disk_quota <= #message_sum is checking the lengths of vm_disk_quota and message_sum, not their actual values. So, it won't compare the numeric values for your intended logic.

If they're strings that can be safely converted to numbers, use tonumber():

if (vm_disk_quota and message_sum and tonumber(vm_disk_quota) <= tonumber(message_sum)) then
  -- your code
end

This will compare them as numbers, ensuring that vm_disk_quota is less than or equal to message_sum.
2023-10-26 13:53:38 -06:00
agree 37d7c43e17
[dialplan] Bind digit bleg without a lua script (#6817) 2023-10-26 13:27:31 -06:00
FusionPBX 3514a489d1
After application conference skip the row 2023-10-25 11:23:38 -06:00
FusionPBX 72fd0fe343
Move code for calculating the duration 2023-10-25 11:13:20 -06:00
FusionPBX 6ff5a8df3c
Update column order duration first and status last 2023-10-25 10:52:42 -06:00
FusionPBX cb65e7f66e
Prevent an warning by using preg_quote
This accounts for special characters like a * in the value.
2023-10-25 10:41:03 -06:00
FusionPBX 57d8d52336
Add Call Detail Record status no answer 2023-10-25 09:37:17 -06:00
Alex fd1820c399
Update app_languages.php (#6816) 2023-10-25 09:29:45 -06:00
FusionPBX 3630d29872
Add a new status no_answer 2023-10-25 09:03:04 -06:00
agree a785292811
[eavesdrop] Fix eavesdropping wrong uuid (#6815)
If the extension is in a call and also receives calls at the same time, the query will return more than one uuid causing to eavesdrop the wrong channel.
2023-10-24 17:07:55 -06:00
FusionPBX 2be533687d
Add permissions for call detail record details. Purpose to hide advanced details from the admin group. 2023-10-24 17:06:39 -06:00
FusionPBX d7e2ab900b
Call Detail Record add status and use billsec for the duration 2023-10-24 15:58:13 -06:00