File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -238,12 +238,12 @@ class Settings(BaseSettings):
238
238
@computed_field
239
239
@property
240
240
def OPENAPI_AUTHORIZATION_URL (self ) -> dict :
241
- return f ' https://{settings .TENANT_NAME}.b2clogin.com/{settings .TENANT_NAME}.onmicrosoft.com/{settings .AUTH_POLICY_NAME}/oauth2/v2.0/authorize'
241
+ return f ' https://{self .TENANT_NAME}.b2clogin.com/{self .TENANT_NAME}.onmicrosoft.com/{self .AUTH_POLICY_NAME}/oauth2/v2.0/authorize'
242
242
243
243
@computed_field
244
244
@property
245
245
def OPENAPI_TOKEN_URL (self ) -> dict :
246
- return f ' https://{settings .TENANT_NAME}.b2clogin.com/{settings .TENANT_NAME}.onmicrosoft.com/{settings .AUTH_POLICY_NAME}/oauth2/v2.0/token'
246
+ return f ' https://{self .TENANT_NAME}.b2clogin.com/{self .TENANT_NAME}.onmicrosoft.com/{self .AUTH_POLICY_NAME}/oauth2/v2.0/token'
247
247
248
248
model_config = SettingsConfigDict (
249
249
env_file =' .env' ,
You can’t perform that action at this time.
0 commit comments