From 8e77f143dcab04f58c82de0ba60f20719af2cd49 Mon Sep 17 00:00:00 2001 From: thibaud <thibaud@le-filament.com> Date: Thu, 30 Nov 2023 11:55:31 +0100 Subject: [PATCH] [REM] Removed data from demo --- __manifest__.py | 1 - security/fast_api_endpoint.xml | 23 ----------------------- 2 files changed, 24 deletions(-) delete mode 100644 security/fast_api_endpoint.xml diff --git a/__manifest__.py b/__manifest__.py index 4e6af20..ca8f6cd 100644 --- a/__manifest__.py +++ b/__manifest__.py @@ -11,7 +11,6 @@ }, "data": [ "security/ir.model.access.csv", - "security/fast_api_endpoint.xml", # datas "data/endpoint.xml", # views diff --git a/security/fast_api_endpoint.xml b/security/fast_api_endpoint.xml deleted file mode 100644 index 30d5975..0000000 --- a/security/fast_api_endpoint.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="utf-8" ?> -<!-- Copyright 2022 ACSONE SA/NV - License LGPL-3.0 or later (http://www.gnu.org/licenses/LGPL). --> -<odoo> - <record - id="my_demo_app_user" - model="res.users" - context="{'no_reset_password': True, 'no_reset_password': True}" - > - <field name="name">My Demo Endpoint User</field> - <field name="login">my_demo_app_user</field> - <field name="groups_id" eval="[(6, 0, [])]" /> - </record> - - <record id="my_demo_app_group" model="res.groups"> - <field name="name">My Demo Endpoint Group</field> - <field name="users" eval="[(4, ref('my_demo_app_user'))]" /> - <field - name="implied_ids" - eval="[(4, ref('fastapi.group_fastapi_endpoint_runner'))]" - /> - </record> -</odoo> -- GitLab