Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import type { EnvVarInfo } from '@/types/hermes'
|
||||
|
||||
/** An unset secret in `category`. The Keys tab and the settings search both
|
||||
* bucket by category and branch on `is_set`, so those are what tests vary. */
|
||||
export function envVar(category: string, patch: Partial<EnvVarInfo> = {}): EnvVarInfo {
|
||||
return {
|
||||
advanced: false,
|
||||
category,
|
||||
description: '',
|
||||
is_password: true,
|
||||
is_set: false,
|
||||
redacted_value: null,
|
||||
tools: [],
|
||||
url: '',
|
||||
...patch
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user