17 lines
316 B
TypeScript
17 lines
316 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
/**
|
|
* Payload for creating a Forgejo connection configuration.
|
|
*/
|
|
export interface ForgejoConnectionCreate {
|
|
name: string;
|
|
base_url: string;
|
|
token?: string | null;
|
|
active?: boolean;
|
|
}
|