-
-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] auth_oauth_multi_token: make it compatible with odoo.sh "login as"
- Loading branch information
Showing
6 changed files
with
111 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,19 +66,19 @@ Authors | |
Contributors | ||
------------ | ||
|
||
- Florent de Labarre <[email protected]> | ||
- Simone Orsi <[email protected]> | ||
- `Tecnativa <https://www.tecnativa.com/>`__: | ||
- Florent de Labarre <[email protected]> | ||
- Simone Orsi <[email protected]> | ||
- `Tecnativa <https://www.tecnativa.com/>`__: | ||
|
||
- Jairo Llopis | ||
- Sergio Teruel | ||
- Jairo Llopis | ||
- Sergio Teruel | ||
|
||
- Stéphane Bidoul <[email protected]> | ||
- Dan Tillinghast | ||
- Miku Laitinen | ||
- `Kencove <https://www.kencove.com/>`__: | ||
- Stéphane Bidoul <[email protected]> | ||
- Dan Tillinghast | ||
- Miku Laitinen | ||
- `Kencove <https://www.kencove.com/>`__: | ||
|
||
- Mohamed Alkobrosli | ||
- Mohamed Alkobrosli | ||
|
||
Maintainers | ||
----------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
auth_oauth_multi_token/migrations/17.0.1.1.0/pre-migration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
def migrate(cr, version): | ||
cr.execute( | ||
""" | ||
UPDATE | ||
res_users | ||
SET | ||
oauth_access_token = oauth_master_uuid; | ||
""" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters