@@ -26,6 +26,8 @@ export interface IGroup extends IActor {
|
||||
manuallyApprovesFollowers: boolean;
|
||||
activity: Paginate<IActivity>;
|
||||
followers: Paginate<IFollower>;
|
||||
membersCount?: number;
|
||||
followersCount?: number;
|
||||
}
|
||||
|
||||
export class Group extends Actor implements IGroup {
|
||||
|
||||
@@ -124,4 +124,10 @@ export interface IConfig {
|
||||
eventParticipants: string[];
|
||||
};
|
||||
analytics: IAnalyticsConfig[];
|
||||
search: {
|
||||
global: {
|
||||
isEnabled: boolean;
|
||||
isDefault: boolean;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -286,3 +286,8 @@ export enum InstanceFollowStatus {
|
||||
PENDING = "PENDING",
|
||||
NONE = "NONE",
|
||||
}
|
||||
|
||||
export enum SearchTargets {
|
||||
INTERNAL = "INTERNAL",
|
||||
GLOBAL = "GLOBAL",
|
||||
}
|
||||
|
||||
@@ -17,6 +17,8 @@ export interface IEventCardOptions {
|
||||
loggedPerson?: IPerson | boolean;
|
||||
hideDetails?: boolean;
|
||||
organizerActor?: IActor | null;
|
||||
isRemoteEvent?: boolean;
|
||||
isLoggedIn?: boolean;
|
||||
}
|
||||
|
||||
export interface IEventParticipantStats {
|
||||
|
||||
@@ -10,7 +10,7 @@ export interface IPost {
|
||||
local: boolean;
|
||||
title: string;
|
||||
body: string;
|
||||
tags?: ITag[];
|
||||
tags: ITag[];
|
||||
picture?: IMedia | null;
|
||||
draft: boolean;
|
||||
visibility: PostVisibility;
|
||||
|
||||
Reference in New Issue
Block a user