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:
commit
b2bcfb24e3
3 changed files with 9 additions and 2 deletions
|
@ -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",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue