MCPcopy
hub / github.com/decaporg/decap-cms / Config

Interface Config

packages/decap-cms-backend-github/src/API.ts:70–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68export const MOCK_PULL_REQUEST = -1;
69
70export interface Config {
71 apiRoot?: string;
72 token?: string;
73 tokenKeyword?: string;
74 branch?: string;
75 useOpenAuthoring?: boolean;
76 repo?: string;
77 originRepo?: string;
78 squashMerges: boolean;
79 initialWorkflowStatus: string;
80 cmsLabelPrefix: string;
81 baseUrl?: string;
82 getUser: ({ token }: { token: string }) => Promise<GitHubUser>;
83}
84
85interface TreeFile {
86 type: 'blob' | 'tree';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected