Merge branch 'remove_community_creator'

This commit is contained in:
Dessalines 2021-04-07 16:36:40 -04:00
commit 90623a56e4
3 changed files with 1 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
"version": "0.11.0-rc.2",
"version": "0.11.0-rc.3",
"author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0",
"main": "./dist/index.js",

View file

@ -187,7 +187,6 @@ export interface CommunitySafe {
name: string;
title: string;
description?: string;
creator_id: number;
removed: boolean;
published: string;
updated?: string;

View file

@ -187,7 +187,6 @@ export interface CommunityPersonBanView {
export interface CommunityView {
community: CommunitySafe;
creator: PersonSafe;
subscribed: boolean;
counts: CommunityAggregates;
}