-
-
Notifications
You must be signed in to change notification settings - Fork 520
Expand file tree
/
Copy path__manifest__.py
More file actions
28 lines (27 loc) · 802 Bytes
/
__manifest__.py
File metadata and controls
28 lines (27 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2016 SYLEAM
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "OAuth Provider",
"summary": "Allows to use Odoo as an OAuth2 provider",
"version": "19.0.1.0.0",
"category": "Authentication",
"website": "https://github.com/OCA/server-auth",
"author": "SYLEAM, Odoo Community Association (OCA)",
"license": "AGPL-3",
"installable": True,
"external_dependencies": {
"python": ["oauthlib"],
},
"depends": [
"base",
"web",
],
"data": [
"security/oauth_provider_security.xml",
"security/ir.model.access.csv",
"views/oauth_provider_client.xml",
"views/oauth_provider_scope.xml",
"templates/authorization.xml",
],
"pre_init_hook": "pre_init_hook",
}