Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Add GitLabCredentials placeholder text for token field #26

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased

### Added
- Add placeholder text to `GitLabCredentials` token field in UI - [#23](
https://github.com/PrefectHQ/prefect-gitlab/pull/23/)

### Changed

Expand Down
1 change: 1 addition & 0 deletions prefect_gitlab/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class GitLabCredentials(Block):
name="Personal Access Token",
default=None,
description="A GitLab Personal Access Token with read_repository scope.",
example="oauth2:my-token",
)
url: str = Field(
default=None, title="URL", description="URL to self-hosted GitLab instances."
Expand Down