refactor(IntegrationApplication): remove summary (#7729)

This commit is contained in:
Almeida
2022-04-05 11:25:52 +01:00
committed by GitHub
parent f88e1ac4be
commit eb6b472f72
2 changed files with 0 additions and 11 deletions

View File

@@ -50,16 +50,6 @@ class IntegrationApplication extends Application {
this.rpcOrigins ??= [];
}
if ('summary' in data) {
/**
* The application's summary
* @type {?string}
*/
this.summary = data.summary;
} else {
this.summary ??= null;
}
if ('hook' in data) {
/**
* Whether the application can be default hooked by the client

View File

@@ -1408,7 +1408,6 @@ export class IntegrationApplication extends Application {
public termsOfServiceURL: string | null;
public privacyPolicyURL: string | null;
public rpcOrigins: string[];
public summary: string | null;
public hook: boolean | null;
public cover: string | null;
public verifyKey: string | null;