fix
This commit is contained in:
parent
5aaa88971a
commit
87e3c3e917
|
@ -2,7 +2,7 @@ import json
|
||||||
|
|
||||||
import click
|
import click
|
||||||
|
|
||||||
from flask import current_app as app
|
from flask import g, current_app as app
|
||||||
from ereuseapi.methods import register_user
|
from ereuseapi.methods import register_user
|
||||||
from ereuse_devicehub.db import db
|
from ereuse_devicehub.db import db
|
||||||
from ereuse_devicehub.resources.user.models import User
|
from ereuse_devicehub.resources.user.models import User
|
||||||
|
@ -59,10 +59,14 @@ class RegisterUserDlt:
|
||||||
user.api_keys_dlt = encrypt(password, data_eth)
|
user.api_keys_dlt = encrypt(password, data_eth)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
attributes = user.get_abac_attributes()
|
# TODO Not works
|
||||||
roles = attributes.get("role", ["Operator"])
|
with app.app_context():
|
||||||
|
ses = g.get('session', None)
|
||||||
|
ses["eth_pub_key"] = eth_pub_key
|
||||||
|
attributes = user.get_abac_attributes()
|
||||||
|
roles = attributes.get("role", ["Operator"])
|
||||||
except Exception:
|
except Exception:
|
||||||
roles ["Operator"]
|
roles = ["Operator"]
|
||||||
|
|
||||||
user.rols_dlt = json.dumps(roles)
|
user.rols_dlt = json.dumps(roles)
|
||||||
|
|
||||||
|
|
Reference in New Issue