Skip to content

Commit

Permalink
Add dashboard_alias field (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell authored Sep 4, 2024
1 parent e6d8b2e commit f73ed3c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions flag_engine/identities/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ class IdentityModel(BaseModel):
identity_uuid: UUID4 = Field(default_factory=uuid.uuid4)
django_id: typing.Optional[int] = None

dashboard_alias: typing.Optional[str] = None

@computed_field # type: ignore[misc]
@property
def composite_key(self) -> str:
Expand Down

0 comments on commit f73ed3c

Please sign in to comment.