mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-21 22:14:33 +08:00

* chore: add migration for pat to add default values * fix: minor changes * fix: don't panic in GetClickhouseColumnName * fix: use new function for pat * fix: address minor comments * fix: address comments * fix: remove generatepat * fix: minor changes * fix: remove extra check --------- Co-authored-by: Vibhu Pandey <vibhupandey28@gmail.com>
8 lines
169 B
Go
8 lines
169 B
Go
package model
|
|
|
|
type CreatePATRequestBody struct {
|
|
Name string `json:"name"`
|
|
Role string `json:"role"`
|
|
ExpiresInDays int64 `json:"expiresInDays"`
|
|
}
|