Adding email admins for new reports. (#105)

* Adding email admins for new reports.

* v0.17.2-rc.1
This commit is contained in:
Dessalines 2023-02-16 21:06:56 -05:00 committed by GitHub
parent 2477b17a45
commit dcb849bdd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{
"name": "lemmy-js-client",
"version": "0.17.0-rc.62",
"version": "0.17.2-rc.1",
"description": "A javascript / typescript client for Lemmy",
"repository": "https://github.com/LemmyNet/lemmy-js-client",
"license": "AGPL-3.0",

View file

@ -101,6 +101,7 @@ export interface CreateSite {
default_theme?: string;
default_post_listing_type?: string;
application_email_admins?: boolean;
reports_email_admins?: boolean;
hide_modlog_mod_names?: boolean;
discussion_languages?: number[];
legal_information?: string;
@ -146,6 +147,7 @@ export interface EditSite {
default_post_listing_type?: string;
legal_information?: string;
application_email_admins?: boolean;
reports_email_admins?: boolean;
hide_modlog_mod_names?: boolean;
discussion_languages?: number[];
slur_filter_regex?: string;

View file

@ -79,6 +79,7 @@ export interface LocalSite {
legal_information?: string;
hide_modlog_mod_names: boolean;
application_email_admins: boolean;
reports_email_admins: boolean;
slur_filter_regex?: string;
actor_name_max_length: number;
federation_enabled: boolean;