mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
471 B
22 lines
471 B
6 months ago
|
import { acceptHMRUpdate, defineStore } from 'pinia'
|
||
|
|
||
|
// a placeholder for the org store which is used in cloud version
|
||
|
export const useOrg = defineStore('orgStore', () => {
|
||
|
const org = ref()
|
||
|
const orgId = ref(null)
|
||
|
|
||
|
const loadOrg = async () => {}
|
||
|
const updateOrg = async (_updateObj: any) => {}
|
||
|
|
||
|
return {
|
||
|
org,
|
||
|
orgId,
|
||
|
updateOrg,
|
||
|
loadOrg,
|
||
|
}
|
||
|
})
|
||
|
|
||
|
if (import.meta.hot) {
|
||
|
import.meta.hot.accept(acceptHMRUpdate(useOrg as any, import.meta.hot))
|
||
|
}
|