mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 04:11:11 +00:00
Adding email admins for new reports. (#105)
* Adding email admins for new reports. * v0.17.2-rc.1
This commit is contained in:
parent
2477b17a45
commit
dcb849bdd9
3 changed files with 4 additions and 1 deletions
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue