mirror of
https://github.com/itsdave-de/msp_remoteadmin.git
synced 2025-05-06 20:35:12 +02:00
Merge branch 'main' of github.com:itsdave-de/msp_remoteadmin
This commit is contained in:
commit
7186d61d11
0
msp_remoteadmin/msp_remoteadmin/doctype/__init__.py
Normal file
0
msp_remoteadmin/msp_remoteadmin/doctype/__init__.py
Normal file
@ -0,0 +1,8 @@
|
||||
// Copyright (c) 2024, Luiz Costa and contributors
|
||||
// For license information, please see license.txt
|
||||
|
||||
frappe.ui.form.on('Remote Connections Settings', {
|
||||
// refresh: function(frm) {
|
||||
|
||||
// }
|
||||
});
|
@ -0,0 +1,60 @@
|
||||
{
|
||||
"actions": [],
|
||||
"allow_rename": 1,
|
||||
"creation": "2024-05-31 12:24:01.529877",
|
||||
"default_view": "List",
|
||||
"doctype": "DocType",
|
||||
"editable_grid": 1,
|
||||
"engine": "InnoDB",
|
||||
"field_order": [
|
||||
"guacamole_server",
|
||||
"guacamole_user",
|
||||
"guacamole_pass"
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"fieldname": "guacamole_server",
|
||||
"fieldtype": "Data",
|
||||
"in_list_view": 1,
|
||||
"label": "Guacamole server",
|
||||
"reqd": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "guacamole_user",
|
||||
"fieldtype": "Data",
|
||||
"in_list_view": 1,
|
||||
"label": "Username",
|
||||
"reqd": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "guacamole_pass",
|
||||
"fieldtype": "Password",
|
||||
"in_list_view": 1,
|
||||
"label": "Password",
|
||||
"reqd": 1
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"issingle": 1,
|
||||
"links": [],
|
||||
"modified": "2024-05-31 12:24:01.529877",
|
||||
"modified_by": "Administrator",
|
||||
"module": "MSP Remoteadmin",
|
||||
"name": "Remote Connections Settings",
|
||||
"owner": "Administrator",
|
||||
"permissions": [
|
||||
{
|
||||
"create": 1,
|
||||
"delete": 1,
|
||||
"email": 1,
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"role": "System Manager",
|
||||
"share": 1,
|
||||
"write": 1
|
||||
}
|
||||
],
|
||||
"sort_field": "modified",
|
||||
"sort_order": "DESC",
|
||||
"states": []
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
# Copyright (c) 2024, Luiz Costa and contributors
|
||||
# For license information, please see license.txt
|
||||
|
||||
# import frappe
|
||||
from frappe.model.document import Document
|
||||
|
||||
class RemoteConnectionsSettings(Document):
|
||||
pass
|
@ -0,0 +1,9 @@
|
||||
# Copyright (c) 2024, Luiz Costa and Contributors
|
||||
# See license.txt
|
||||
|
||||
# import frappe
|
||||
from frappe.tests.utils import FrappeTestCase
|
||||
|
||||
|
||||
class TestRemoteConnectionsSettings(FrappeTestCase):
|
||||
pass
|
0
msp_remoteadmin/www/__init__.py
Normal file
0
msp_remoteadmin/www/__init__.py
Normal file
Loading…
x
Reference in New Issue
Block a user