[ADD]document_url_google_drive: attach document from Google Drive

This commit is contained in:
Demchuk Mykola
2023-11-09 22:11:33 +02:00
committed by Ivan Sokolov
parent 82b8383a8d
commit ea29d68258
29 changed files with 962 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# Copyright (C) 2023 Cetmix OÜ
# License AGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
"name": "Google Drive URL Attachment",
"summary": "Attach Google Drive link to Odoo document using Google Drive Picker",
"version": "16.0.1.0.0",
"category": "Tools",
"website": "https://github.com/OCA/knowledge",
"author": "Cetmix, Odoo Community Association (OCA)",
"license": "AGPL-3",
"installable": True,
"images": ["static/description/banner.png"],
"depends": [
"document_url",
"google_account",
],
"data": [
"views/res_users_view.xml",
"views/res_config_settings_view.xml",
],
"assets": {
"web.assets_backend": [
"document_url_google_drive/static/src/js/attachment_google_picker.esm.js",
"document_url_google_drive/static/src/xml/google_picker_url.xml",
"document_url_google_drive/static/src/xml/attachment_google_picker.xml",
],
},
}