Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ def from_api(cls, entity: dict[str, Any]) -> CatalogOrganization:
allowed_origins=safeget(ea, ["allowed_origins"]),
oauth_issuer_location=safeget(ea, ["oauth_issuer_location"]),
oauth_client_id=safeget(ea, ["oauth_client_id"]),
region=safeget(ea, ["region"]),
data_center=safeget(ea, ["dataCenter"]),
)

identity_provider_id = safeget(er, ["identityProvider", "data", "id"])
Expand Down Expand Up @@ -87,6 +89,8 @@ class CatalogOrganizationAttributes(Base):
allowed_origins: list[str] | None = None
oauth_issuer_location: str | None = None
oauth_client_id: str | None = None
region: str | None = None
data_center: str | None = None

@staticmethod
def client_class() -> type[JsonApiOrganizationInAttributes]:
Expand Down
Loading