mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-14 01:41:26 -06:00

Changes done: - Squash administrative commits - Purge translations - Remove ir.model.access.csv file - Improve tests (change to setUpClass) - Replace name_get() to _compute_display_name() (document_page) - Remove readonly=1 (redudant, it already is) defined in approved_uid and approved_date fields in views - Restore readonly=1 to the state field - Remove duplicate Back to draft button TT51529
26 lines
822 B
Python
26 lines
822 B
Python
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
"name": "Document Page Approval",
|
|
"version": "17.0.1.0.0",
|
|
"author": "Savoir-faire Linux, Odoo Community Association (OCA)",
|
|
"website": "https://github.com/OCA/knowledge",
|
|
"license": "AGPL-3",
|
|
"category": "Knowledge Management",
|
|
"depends": ["document_page", "mail"],
|
|
"data": [
|
|
"data/email_template.xml",
|
|
"views/document_page_approval.xml",
|
|
"security/document_page_security.xml",
|
|
],
|
|
"images": [
|
|
"images/category.png",
|
|
"images/page_history_list.png",
|
|
"images/page_history.png",
|
|
],
|
|
"post_init_hook": "post_init_hook",
|
|
"uninstall_hook": "uninstall_hook",
|
|
"installable": True,
|
|
}
|