Skip to content
Snippets Groups Projects
Commit 2dfa8fd0 authored by François (frc)'s avatar François (frc) Committed by François (FRC)
Browse files

[IMP] iap: Add TTL option for IAP transaction


New optional 'ttl' parameter for the authorize function. It will allow to specify how much time the credits will be reserved.

closes odoo/odoo#69113

Signed-off-by: default avatarFlorian Daloze (fda) <fda@odoo.com>
parent 01c02edd
No related branches found
No related tags found
No related merge requests found
......@@ -80,13 +80,14 @@ class IapTransaction(object):
def __init__(self):
self.credit = None
def authorize(env, key, account_token, credit, dbuuid=False, description=None, credit_template=None):
def authorize(env, key, account_token, credit, dbuuid=False, description=None, credit_template=None, ttl=4320):
endpoint = get_endpoint(env)
params = {
'account_token': account_token,
'credit': credit,
'key': key,
'description': description,
'ttl': ttl
}
if dbuuid:
params.update({'dbuuid': dbuuid})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment