Skip to content
This repository was archived by the owner on Nov 14, 2023. It is now read-only.

Commit 523657d

Browse files
author
Mathias Markl
committed
delete
1 parent 29016cf commit 523657d

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

muk_dms_access/__manifest__.py

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# -*- coding: utf-8 -*-
2+
3+
###################################################################################
4+
#
5+
# MuK Document Management System
6+
#
7+
# Copyright (C) 2017 MuK IT GmbH
8+
#
9+
# This program is free software: you can redistribute it and/or modify
10+
# it under the terms of the GNU Affero General Public License as
11+
# published by the Free Software Foundation, either version 3 of the
12+
# License, or (at your option) any later version.
13+
#
14+
# This program is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU Affero General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU Affero General Public License
20+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
21+
#
22+
###################################################################################
23+
24+
{
25+
'name': "MuK Documents Access Control",
26+
'summary': """Document Management System""",
27+
'description': """
28+
Access Control Extension
29+
""",
30+
'version': '10.0.1.0.0',
31+
'category': 'Hidden',
32+
'license': 'AGPL-3',
33+
'author': "MuK IT",
34+
'website': "http://www.mukit.at",
35+
'contributors': [
36+
"Mathias Markl <mathias.markl@mukit.at>",
37+
"Kerrim Abdelhamed <kerrim.adbelhamed@mukit.at>",
38+
],
39+
'depends': [
40+
'muk_dms',
41+
'hr',
42+
],
43+
"data": [
44+
'security/ir.model.access.csv',
45+
'views/muk_dms_view_groups.xml',
46+
'views/muk_dms_view_directory.xml',
47+
'views/muk_dms_view_file.xml',
48+
],
49+
'images': [
50+
'static/description/banner.png'
51+
],
52+
"installable": True,
53+
}

0 commit comments

Comments
 (0)