mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-06 00:56:39 +00:00
* enable pat creation on setup * remove logic from handler towards setup service * fix lint issue * fix rollback on account id returning empty * fix coderabbit comments * fix setup PAT rollback behavior
9 lines
245 B
Go
9 lines
245 B
Go
package account
|
|
|
|
const (
|
|
// PATMinExpireDays is the minimum allowed Personal Access Token expiration in days.
|
|
PATMinExpireDays = 1
|
|
// PATMaxExpireDays is the maximum allowed Personal Access Token expiration in days.
|
|
PATMaxExpireDays = 365
|
|
)
|