messages departments section

This commit is contained in:
amazuecos
2025-03-20 08:20:50 +01:00
parent d417db18e2
commit 6e96beeec8
26 changed files with 1045 additions and 306 deletions

View File

@ -0,0 +1,13 @@
import Ajax from '../../../components/ajax.js'
import { ChatDepartmentDatatable } from '../../../components/datatables/ChatDepartmentDatatable.js'
$(() => {
const chatDepartmentDatatable = new ChatDepartmentDatatable($("#tableChatDepartments"))
chatDepartmentDatatable.init()
})

View File

@ -0,0 +1,8 @@
import ChatDepartmentForm from '../../../components/forms/chatDepartmentForm.js'
$(() => {
const chatDepartmentForm = new ChatDepartmentForm($("#chatDepartmentForm"))
chatDepartmentForm.init()
})