0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Merged v5.22.11 into main

This commit is contained in:
Ghost CI 2022-11-15 14:08:47 +00:00
commit b2bcfb24e3
3 changed files with 9 additions and 2 deletions

View file

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

View file

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

View file

@ -294,6 +294,13 @@ module.exports = class EventRepository {
}; };
} }
/**
* @deprecated Do not use
*/
async getCreatedEvents(options = {}, filter) {
return await this.getSignupEvents(options, filter);
}
async getSignupEvents(options = {}, filter) { async getSignupEvents(options = {}, filter) {
options = { options = {
...options, ...options,