Skip to content

Commit

Permalink
Add Secret.author_id field
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed May 21, 2024
1 parent c6ec93d commit 4393e03
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ use patch releases for compatibility fixes instead.

## Unreleased

### Added

- Added `Secret.author_id` field.

## [v1.26.12](https://github.com/allenai/beaker-py/releases/tag/v1.26.12) - 2024-05-10

### Added
Expand Down
2 changes: 2 additions & 0 deletions beaker/data_model/secret.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from datetime import datetime
from typing import Optional

from .base import BaseModel

Expand All @@ -9,3 +10,4 @@ class Secret(BaseModel):
name: str
created: datetime
updated: datetime
author_id: Optional[str] = None

0 comments on commit 4393e03

Please sign in to comment.