drone/web/src/atoms/repoMetadata.ts
Ritik Kapoor 87e418bb86 update: [code-2017] swagger (#2110)
* update: [code-2017] id and display_name to identifier
* fix: [code-2017] comment update
* fix: [code-2017] replace identifier with id in pipelines
* fix: [code-2017] prettier
* update: [code-2017] swagger
2024-07-05 16:39:26 +00:00

5 lines
170 B
TypeScript

import { atom } from 'jotai'
import type { RepoRepositoryOutput } from 'services/code'
export const repoMetadataAtom = atom<RepoRepositoryOutput | undefined>(undefined)