Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright (c) 2026, Codeventurers and contributors
// For license information, please see license.txt

// frappe.ui.form.on("Genie Chat Message", {
// refresh(frm) {

// },
// });
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2026-06-03 18:23:00.205412",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"session",
"column_break_acog",
"sender",
"section_break_xxcg",
"message"
],
"fields": [
{
"fieldname": "session",
"fieldtype": "Link",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "Session",
"options": "Genie Chat Session",
"read_only": 1
},
{
"fieldname": "column_break_acog",
"fieldtype": "Column Break"
},
{
"fieldname": "sender",
"fieldtype": "Select",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "Sender",
"options": "\nUser\nGenie",
"read_only": 1
},
{
"fieldname": "section_break_xxcg",
"fieldtype": "Section Break"
},
{
"fieldname": "message",
"fieldtype": "Long Text",
"label": "Message",
"read_only": 1
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2026-06-03 18:31:59.241780",
"modified_by": "Administrator",
"module": "Nextgenie",
"name": "Genie Chat Message",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
}
],
"row_format": "Dynamic",
"rows_threshold_for_grid_search": 20,
"sort_field": "modified",
"sort_order": "DESC",
"states": []
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2026, Codeventurers and contributors
# For license information, please see license.txt

# import frappe
from frappe.model.document import Document


class GenieChatMessage(Document):
pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2026, Codeventurers and Contributors
# See license.txt

# import frappe
from frappe.tests.utils import FrappeTestCase


class TestGenieChatMessage(FrappeTestCase):
pass
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright (c) 2026, Codeventurers and contributors
// For license information, please see license.txt

// frappe.ui.form.on("Genie Chat Session", {
// refresh(frm) {

// },
// });
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2026-06-03 18:21:30.016357",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"title",
"column_break_kkld",
"user"
],
"fields": [
{
"fieldname": "title",
"fieldtype": "Data",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "Title",
"read_only": 1
},
{
"fieldname": "column_break_kkld",
"fieldtype": "Column Break"
},
{
"fieldname": "user",
"fieldtype": "Link",
"in_list_view": 1,
"label": "User",
"options": "User",
"read_only": 1
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2026-06-03 18:32:13.887279",
"modified_by": "Administrator",
"module": "Nextgenie",
"name": "Genie Chat Session",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
}
],
"row_format": "Dynamic",
"rows_threshold_for_grid_search": 20,
"sort_field": "modified",
"sort_order": "DESC",
"states": []
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2026, Codeventurers and contributors
# For license information, please see license.txt

# import frappe
from frappe.model.document import Document


class GenieChatSession(Document):
pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2026, Codeventurers and Contributors
# See license.txt

# import frappe
from frappe.tests.utils import FrappeTestCase


class TestGenieChatSession(FrappeTestCase):
pass
Loading
Loading