Skip to content

Commit 0f016eb

Browse files
authored
[ADD] GH199288 remote access modules (#210)
* [ADD] GH199288 remote access modules * [FIX] Remove debug tweak * [FIX] Failing test * [FIX] Refactor constrains and fix duplicate field labels
1 parent 49f8204 commit 0f016eb

33 files changed

Lines changed: 2868 additions & 1 deletion

glodo_client/README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Glodo Client
2+
============
3+
Client side module to allow remote login and administration by Glo.

glodo_client/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from . import controllers
2+
from . import utils

glodo_client/__manifest__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "Glodo Cloud Client",
3+
"summary": "Server-wide client for Glodo Cloud remote instance management",
4+
"author": "Glo Networks",
5+
"website": "https://github.com/GlodoUK/odoo-addons",
6+
"category": "Technical",
7+
"version": "19.0.1.0.0",
8+
"depends": ["base"],
9+
"external_dependencies": {
10+
"python": ["cryptography"],
11+
},
12+
"license": "Other proprietary",
13+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import main

0 commit comments

Comments
 (0)