bugfixes; research subproc; higher sandbox limits
This commit is contained in:
14
web/src/stores/researchTypes.ts
Normal file
14
web/src/stores/researchTypes.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineStore } from 'pinia'
|
||||
import { ref } from 'vue'
|
||||
|
||||
export interface ResearchType {
|
||||
display_name: string
|
||||
description?: string
|
||||
created_at: number
|
||||
modified_at: number
|
||||
}
|
||||
|
||||
export const useResearchTypesStore = defineStore('research_types', () => {
|
||||
const types = ref<Record<string, ResearchType>>({})
|
||||
return { types }
|
||||
})
|
||||
14
web/src/stores/strategyTypes.ts
Normal file
14
web/src/stores/strategyTypes.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineStore } from 'pinia'
|
||||
import { ref } from 'vue'
|
||||
|
||||
export interface StrategyType {
|
||||
display_name: string
|
||||
description?: string
|
||||
created_at: number
|
||||
modified_at: number
|
||||
}
|
||||
|
||||
export const useStrategyTypesStore = defineStore('strategy_types', () => {
|
||||
const types = ref<Record<string, StrategyType>>({})
|
||||
return { types }
|
||||
})
|
||||
Reference in New Issue
Block a user