feat: add azure devops backend (#4427)
This commit is contained in:
@ -32,6 +32,7 @@
|
||||
"immutable": "^3.7.6",
|
||||
"lodash": "^4.17.11",
|
||||
"moment": "^2.24.0",
|
||||
"netlify-cms-backend-azure": "^1.0.0",
|
||||
"netlify-cms-backend-bitbucket": "^2.12.5",
|
||||
"netlify-cms-backend-git-gateway": "^2.11.6",
|
||||
"netlify-cms-backend-github": "^2.11.6",
|
||||
|
@ -2,6 +2,7 @@
|
||||
import { NetlifyCmsCore as CMS } from 'netlify-cms-core';
|
||||
|
||||
// Backends
|
||||
import { AzureBackend } from 'netlify-cms-backend-azure';
|
||||
import { GitHubBackend } from 'netlify-cms-backend-github';
|
||||
import { GitLabBackend } from 'netlify-cms-backend-gitlab';
|
||||
import { GitGatewayBackend } from 'netlify-cms-backend-git-gateway';
|
||||
@ -35,6 +36,7 @@ import * as locales from 'netlify-cms-locales';
|
||||
|
||||
// Register all the things
|
||||
CMS.registerBackend('git-gateway', GitGatewayBackend);
|
||||
CMS.registerBackend('azure', AzureBackend);
|
||||
CMS.registerBackend('github', GitHubBackend);
|
||||
CMS.registerBackend('gitlab', GitLabBackend);
|
||||
CMS.registerBackend('bitbucket', BitbucketBackend);
|
||||
|
Reference in New Issue
Block a user