24 lines
422 B
TypeScript
24 lines
422 B
TypeScript
|
|
export const UNUSED_ENV_ID = "unused_env";
|
||
|
|
|
||
|
|
export interface EnvironmentType {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
selected: boolean;
|
||
|
|
userPermissions: string[];
|
||
|
|
}
|
||
|
|
|
||
|
|
export const environmentList: Array<EnvironmentType> = [
|
||
|
|
{
|
||
|
|
id: UNUSED_ENV_ID,
|
||
|
|
name: "production",
|
||
|
|
selected: true,
|
||
|
|
userPermissions: [],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: UNUSED_ENV_ID,
|
||
|
|
name: "staging",
|
||
|
|
selected: false,
|
||
|
|
userPermissions: [],
|
||
|
|
},
|
||
|
|
];
|