first push message

This commit is contained in:
2026-07-01 14:41:49 +07:00
parent 6667dec2bf
commit 58b5f46cc4
2951 changed files with 316619 additions and 0 deletions
@@ -0,0 +1 @@
from . import controllers
@@ -0,0 +1,21 @@
# from odoo import http
# class OdooProjectSync(http.Controller):
# @http.route('/odoo_project_sync/odoo_project_sync', auth='public')
# def index(self, **kw):
# return "Hello, world"
# @http.route('/odoo_project_sync/odoo_project_sync/objects', auth='public')
# def list(self, **kw):
# return http.request.render('odoo_project_sync.listing', {
# 'root': '/odoo_project_sync/odoo_project_sync',
# 'objects': http.request.env['odoo_project_sync.odoo_project_sync'].search([]),
# })
# @http.route('/odoo_project_sync/odoo_project_sync/objects/<model("odoo_project_sync.odoo_project_sync"):obj>', auth='public')
# def object(self, obj, **kw):
# return http.request.render('odoo_project_sync.object', {
# 'object': obj
# })