mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
Issue a JWT ticket on the first request with a short expiry that contains details about which workspace/agent/app combo the ticket is valid for.
9 lines
227 B
Go
9 lines
227 B
Go
package database
|
|
|
|
// Well-known lock IDs for lock functions in the database. These should not
|
|
// change. If locks are deprecated, they should be kept to avoid reusing the
|
|
// same ID.
|
|
const (
|
|
LockIDDeploymentSetup = iota + 1
|
|
)
|