We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36e3109 commit 67cf176Copy full SHA for 67cf176
fixbackend/cloud_accounts/azure_subscription_repo.py
@@ -83,6 +83,8 @@ async def upsert(
83
existing.client_id = client_id
84
existing.client_secret = client_secret
85
existing.created_at = utc() # update to trigger list_created_after
86
+ existing.updated_at = utc()
87
+ existing.can_access_azure_account = False
88
model = existing.to_model()
89
await session.commit()
90
return model
@@ -93,6 +95,7 @@ async def upsert(
93
95
azure_tenant_id=azure_tenant_id,
94
96
client_id=client_id,
97
client_secret=client_secret,
98
+ can_access_azure_account=False,
99
)
100
session.add(entity)
101
0 commit comments