MCPcopy Create free account
hub / github.com/decaporg/decap-cms / Config

Interface Config

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected