Merged v5.57.3 into main

This commit is contained in:
Ghost CI 2023-08-03 10:25:36 +00:00
commit 81ef2ade39
3 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "ghost-admin",
"version": "5.57.2",
"version": "5.57.3",
"description": "Ember.js admin client for Ghost",
"author": "Ghost Foundation",
"homepage": "http://ghost.org",

View File

@ -2,6 +2,7 @@ const {
CollectionsService
} = require('@tryghost/collections');
const BookshelfCollectionsRepository = require('./BookshelfCollectionsRepository');
const labs = require('../../../shared/labs');
let inited = false;
class CollectionsServiceWrapper {
@ -31,6 +32,9 @@ class CollectionsServiceWrapper {
}
async init() {
if (!labs.isSet('collections')) {
return;
}
if (inited) {
return;
}

View File

@ -1,6 +1,6 @@
{
"name": "ghost",
"version": "5.57.2",
"version": "5.57.3",
"description": "The professional publishing platform",
"author": "Ghost Foundation",
"homepage": "https://ghost.org",