https://github.com/osohq/oso_odoo
Support for using oso policies in Odoo applications
https://github.com/osohq/oso_odoo
authorization odoo policy
Last synced: over 1 year ago
JSON representation
Support for using oso policies in Odoo applications
- Host: GitHub
- URL: https://github.com/osohq/oso_odoo
- Owner: osohq
- Created: 2020-09-15T19:48:37.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-12-03T17:04:22.000Z (over 5 years ago)
- Last Synced: 2025-01-13T07:12:54.461Z (over 1 year ago)
- Topics: authorization, odoo, policy
- Language: Python
- Homepage: https://docs.osohq.com
- Size: 123 KB
- Stars: 1
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: security/ir.model.access.csv
Awesome Lists containing this project
README
# oso_odoo
oso support for Odoo
## Installation
`cd` into your Odoo addons directory of choice and clone this repository into a
directory named `oso_odoo`, e.g.:
```console
$ cd odoo/addons
$ git clone https://github.com/osohq/oso_odoo.git
```
Next, we need to install the module's dependencies:
```console
$ cd oso_odoo
$ pip install -r requirements.txt
```
The module should now be in your Odoo addons path. To install the module
through the Odoo web interface, search for "oso_odoo" on the "Apps" page,
making sure to clear the "Apps" filter:

Click "install" on the "oso_odoo" tile.
You can also install the module on the command line using `odoo-bin`:
```console
$ odoo-bin -i oso_odoo -d
```