summary refs log tree commit diff
path: root/api/assets
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--assets/checkLocale.js (renamed from api/assets/checkLocale.js)0
-rw-r--r--assets/dff87c953f43b561d71fbcfe8a93a79a.png (renamed from api/assets/dff87c953f43b561d71fbcfe8a93a79a.png)0
-rw-r--r--assets/endpoints.json (renamed from api/assets/endpoints.json)0
-rw-r--r--assets/features.json (renamed from api/assets/features.json)0
-rw-r--r--assets/fosscord-login.css (renamed from api/assets/fosscord-login.css)0
-rw-r--r--assets/fosscord.css (renamed from api/assets/fosscord.css)0
-rw-r--r--assets/inline-plugins/autoRegister.js (renamed from api/assets/inline-plugins/autoRegister.js)0
-rw-r--r--assets/inline-plugins/fosscord-login.js (renamed from api/assets/inline-plugins/fosscord-login.js)0
-rw-r--r--assets/openapi.json (renamed from api/assets/openapi.json)0
-rw-r--r--assets/plugins/.gitkeep (renamed from api/assets/plugins/.gitkeep)0
-rw-r--r--assets/preload-plugins/.gitkeep (renamed from api/assets/preload-plugins/.gitkeep)0
-rw-r--r--assets/schemas.json (renamed from api/assets/schemas.json)1079
-rw-r--r--assets/user.css (renamed from api/assets/user.css)0
-rw-r--r--assets/widget/banner1.png (renamed from api/assets/widget/banner1.png)bin5950 -> 5950 bytes
-rw-r--r--assets/widget/banner2.png (renamed from api/assets/widget/banner2.png)bin3756 -> 3756 bytes
-rw-r--r--assets/widget/banner3.png (renamed from api/assets/widget/banner3.png)bin5342 -> 5342 bytes
-rw-r--r--assets/widget/banner4.png (renamed from api/assets/widget/banner4.png)bin13105 -> 13105 bytes
-rw-r--r--assets/widget/shield.png (renamed from api/assets/widget/shield.png)bin726 -> 726 bytes
18 files changed, 183 insertions, 896 deletions
diff --git a/api/assets/checkLocale.js b/assets/checkLocale.js

index 016d66c8..016d66c8 100644 --- a/api/assets/checkLocale.js +++ b/assets/checkLocale.js
diff --git a/api/assets/dff87c953f43b561d71fbcfe8a93a79a.png b/assets/dff87c953f43b561d71fbcfe8a93a79a.png
index e69de29b..e69de29b 100644 --- a/api/assets/dff87c953f43b561d71fbcfe8a93a79a.png +++ b/assets/dff87c953f43b561d71fbcfe8a93a79a.png
diff --git a/api/assets/endpoints.json b/assets/endpoints.json
index 8b0514ce..8b0514ce 100644 --- a/api/assets/endpoints.json +++ b/assets/endpoints.json
diff --git a/api/assets/features.json b/assets/features.json
index 05a858a0..05a858a0 100644 --- a/api/assets/features.json +++ b/assets/features.json
diff --git a/api/assets/fosscord-login.css b/assets/fosscord-login.css
index d507c545..d507c545 100644 --- a/api/assets/fosscord-login.css +++ b/assets/fosscord-login.css
diff --git a/api/assets/fosscord.css b/assets/fosscord.css
index 6078fdeb..6078fdeb 100644 --- a/api/assets/fosscord.css +++ b/assets/fosscord.css
diff --git a/api/assets/inline-plugins/autoRegister.js b/assets/inline-plugins/autoRegister.js
index 7bca39f8..7bca39f8 100644 --- a/api/assets/inline-plugins/autoRegister.js +++ b/assets/inline-plugins/autoRegister.js
diff --git a/api/assets/inline-plugins/fosscord-login.js b/assets/inline-plugins/fosscord-login.js
index 9191dad4..9191dad4 100644 --- a/api/assets/inline-plugins/fosscord-login.js +++ b/assets/inline-plugins/fosscord-login.js
diff --git a/api/assets/openapi.json b/assets/openapi.json
index a8a657b2..a8a657b2 100644 --- a/api/assets/openapi.json +++ b/assets/openapi.json
diff --git a/api/assets/plugins/.gitkeep b/assets/plugins/.gitkeep
index e69de29b..e69de29b 100644 --- a/api/assets/plugins/.gitkeep +++ b/assets/plugins/.gitkeep
diff --git a/api/assets/preload-plugins/.gitkeep b/assets/preload-plugins/.gitkeep
index 8b137891..8b137891 100644 --- a/api/assets/preload-plugins/.gitkeep +++ b/assets/preload-plugins/.gitkeep
diff --git a/api/assets/schemas.json b/assets/schemas.json
index 9286b804..0fe3dfa1 100644 --- a/api/assets/schemas.json +++ b/assets/schemas.json
@@ -1,128 +1,26 @@ { - "ts.server.TypingInstallerResponse": { - "type": "object", - "properties": { - "kind": { - "enum": [ - "action::invalidate", - "action::packageInstalled", - "action::set", - "event::beginInstallTypes", - "event::endInstallTypes", - "event::initializationFailed", - "event::typesRegistry" - ], - "type": "string" - } - }, - "additionalProperties": false, - "required": [ - "kind" - ], - "$schema": "http://json-schema.org/draft-07/schema#" - }, - "ts.server.PackageInstalledResponse": { + "ActivitySchema": { "type": "object", "properties": { - "kind": { - "type": "string", - "enum": [ - "action::packageInstalled" - ] - }, - "success": { + "afk": { "type": "boolean" }, - "message": { - "type": "string" - }, - "projectName": { - "type": "string" - } - }, - "additionalProperties": false, - "required": [ - "kind", - "message", - "projectName", - "success" - ], - "$schema": "http://json-schema.org/draft-07/schema#" - }, - "ts.server.InitializationFailedResponse": { - "type": "object", - "properties": { - "kind": { - "type": "string", - "enum": [ - "event::initializationFailed" - ] - }, - "message": { - "type": "string" - }, - "stack": { - "type": "string" - } - }, - "additionalProperties": false, - "required": [ - "kind", - "message" - ], - "$schema": "http://json-schema.org/draft-07/schema#" - }, - "ts.server.ProjectResponse": { - "type": "object", - "properties": { - "projectName": { - "type": "string" + "status": {}, + "activities": { + "type": "array", + "items": {} }, - "kind": { - "enum": [ - "action::invalidate", - "action::packageInstalled", - "action::set", - "event::beginInstallTypes", - "event::endInstallTypes", - "event::initializationFailed", - "event::typesRegistry" - ], - "type": "string" + "since": { + "type": "integer" } }, "additionalProperties": false, "required": [ - "kind", - "projectName" + "afk", + "status" ], "$schema": "http://json-schema.org/draft-07/schema#" }, - "RouteResponse": { - "type": "object", - "properties": { - "status": { - "type": "integer" - }, - "body": { - "type": "array", - "items": { - "type": "string" - } - }, - "headers": { - "$ref": "#/definitions/Record<string,string>" - } - }, - "additionalProperties": false, - "definitions": { - "Record<string,string>": { - "type": "object", - "additionalProperties": false - } - }, - "$schema": "http://json-schema.org/draft-07/schema#" - }, "BanCreateSchema": { "type": "object", "properties": { @@ -211,155 +109,108 @@ ], "$schema": "http://json-schema.org/draft-07/schema#" }, - "ChannelModifySchema": { + "ts.server.TypingInstallerResponse": { "type": "object", "properties": { - "name": { - "maxLength": 100, - "type": "string" - }, - "type": { + "kind": { "enum": [ - 0, - 1, - 10, - 11, - 12, - 13, - 14, - 15, - 2, - 255, - 3, - 33, - 34, - 35, - 4, - 5, - 6, - 64, - 7, - 8, - 9 + "action::invalidate", + "action::packageInstalled", + "action::set", + "event::beginInstallTypes", + "event::endInstallTypes", + "event::initializationFailed", + "event::typesRegistry" ], - "type": "number" - }, - "topic": { "type": "string" - }, - "icon": { - "type": [ - "null", - "string" + } + }, + "additionalProperties": false, + "required": [ + "kind" + ], + "$schema": "http://json-schema.org/draft-07/schema#" + }, + "ts.server.PackageInstalledResponse": { + "type": "object", + "properties": { + "kind": { + "type": "string", + "enum": [ + "action::packageInstalled" ] }, - "bitrate": { - "type": "integer" - }, - "user_limit": { - "type": "integer" - }, - "rate_limit_per_user": { - "type": "integer" - }, - "position": { - "type": "integer" - }, - "permission_overwrites": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "type": { - "$ref": "#/definitions/ChannelPermissionOverwriteType" - }, - "allow": { - "type": "string" - }, - "deny": { - "type": "string" - } - }, - "additionalProperties": false, - "required": [ - "allow", - "deny", - "id", - "type" - ] - } - }, - "parent_id": { - "type": "string" - }, - "id": { - "type": "string" - }, - "nsfw": { + "success": { "type": "boolean" }, - "rtc_region": { + "message": { "type": "string" }, - "default_auto_archive_duration": { - "type": "integer" - }, - "flags": { - "type": "integer" - }, - "default_thread_rate_limit_per_user": { - "type": "integer" + "projectName": { + "type": "string" } }, "additionalProperties": false, - "definitions": { - "ChannelPermissionOverwriteType": { - "enum": [ - 0, - 1, - 2 - ], - "type": "number" - } - }, + "required": [ + "kind", + "message", + "projectName", + "success" + ], "$schema": "http://json-schema.org/draft-07/schema#" }, - "ChannelPermissionOverwriteSchema": { + "ts.server.InitializationFailedResponse": { "type": "object", "properties": { - "allow": { - "type": "string" + "kind": { + "type": "string", + "enum": [ + "event::initializationFailed" + ] }, - "deny": { + "message": { "type": "string" }, - "id": { + "stack": { "type": "string" - }, - "type": { - "$ref": "#/definitions/ChannelPermissionOverwriteType" } }, "additionalProperties": false, "required": [ - "allow", - "deny", - "id", - "type" + "kind", + "message" ], - "definitions": { - "ChannelPermissionOverwriteType": { + "$schema": "http://json-schema.org/draft-07/schema#" + }, + "ts.server.ProjectResponse": { + "type": "object", + "properties": { + "projectName": { + "type": "string" + }, + "kind": { "enum": [ - 0, - 1, - 2 + "action::invalidate", + "action::packageInstalled", + "action::set", + "event::beginInstallTypes", + "event::endInstallTypes", + "event::initializationFailed", + "event::typesRegistry" ], - "type": "number" + "type": "string" } }, + "additionalProperties": false, + "required": [ + "kind", + "projectName" + ], + "$schema": "http://json-schema.org/draft-07/schema#" + }, + "ChannelPermissionOverwriteSchema": { + "type": "object", + "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#" }, "ChannelReorderSchema": { @@ -811,7 +662,7 @@ "additionalProperties": false }, "intents": { - "type": "bigint" + "type": "string" }, "presence": { "$ref": "#/definitions/ActivitySchema" @@ -826,10 +677,10 @@ "type": "array", "items": [ { - "type": "bigint" + "type": "integer" }, { - "type": "bigint" + "type": "integer" } ], "minItems": 2, @@ -876,14 +727,10 @@ "afk": { "type": "boolean" }, - "status": { - "$ref": "#/definitions/Status" - }, + "status": {}, "activities": { "type": "array", - "items": { - "$ref": "#/definitions/Activity" - } + "items": {} }, "since": { "type": "integer" @@ -894,151 +741,6 @@ "afk", "status" ] - }, - "Status": { - "enum": [ - "dnd", - "idle", - "invisible", - "offline", - "online" - ], - "type": "string" - }, - "Activity": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "type": { - "$ref": "#/definitions/ActivityType" - }, - "url": { - "type": "string" - }, - "created_at": { - "type": "integer" - }, - "timestamps": { - "type": "object", - "properties": { - "start": { - "type": "integer" - }, - "end": { - "type": "integer" - } - }, - "additionalProperties": false, - "required": [ - "end", - "start" - ] - }, - "application_id": { - "type": "string" - }, - "details": { - "type": "string" - }, - "state": { - "type": "string" - }, - "emoji": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "id": { - "type": "string" - }, - "animated": { - "type": "boolean" - } - }, - "additionalProperties": false, - "required": [ - "animated", - "name" - ] - }, - "party": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "size": { - "type": "array", - "items": [ - { - "type": "integer" - } - ], - "minItems": 1, - "maxItems": 1 - } - }, - "additionalProperties": false - }, - "assets": { - "type": "object", - "properties": { - "large_image": { - "type": "string" - }, - "large_text": { - "type": "string" - }, - "small_image": { - "type": "string" - }, - "small_text": { - "type": "string" - } - }, - "additionalProperties": false - }, - "secrets": { - "type": "object", - "properties": { - "join": { - "type": "string" - }, - "spectate": { - "type": "string" - }, - "match": { - "type": "string" - } - }, - "additionalProperties": false - }, - "instance": { - "type": "boolean" - }, - "flags": { - "type": "string" - } - }, - "additionalProperties": false, - "required": [ - "flags", - "name", - "type" - ] - }, - "ActivityType": { - "enum": [ - 0, - 1, - 2, - 4, - 5 - ], - "type": "number" } }, "$schema": "http://json-schema.org/draft-07/schema#" @@ -1168,13 +870,9 @@ }, "embeds": { "type": "array", - "items": { - "$ref": "#/definitions/Embed" - } - }, - "embed": { - "$ref": "#/definitions/Embed" + "items": {} }, + "embed": {}, "allowed_mentions": { "type": "object", "properties": { @@ -1241,138 +939,6 @@ } }, "additionalProperties": false, - "definitions": { - "Embed": { - "type": "object", - "properties": { - "title": { - "type": "string" - }, - "type": { - "enum": [ - "article", - "gifv", - "image", - "link", - "rich", - "video" - ], - "type": "string" - }, - "description": { - "type": "string" - }, - "url": { - "type": "string" - }, - "timestamp": { - "type": "string", - "format": "date-time" - }, - "color": { - "type": "integer" - }, - "footer": { - "type": "object", - "properties": { - "text": { - "type": "string" - }, - "icon_url": { - "type": "string" - }, - "proxy_icon_url": { - "type": "string" - } - }, - "additionalProperties": false, - "required": [ - "text" - ] - }, - "image": { - "$ref": "#/definitions/EmbedImage" - }, - "thumbnail": { - "$ref": "#/definitions/EmbedImage" - }, - "video": { - "$ref": "#/definitions/EmbedImage" - }, - "provider": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "url": { - "type": "string" - } - }, - "additionalProperties": false - }, - "author": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "url": { - "type": "string" - }, - "icon_url": { - "type": "string" - }, - "proxy_icon_url": { - "type": "string" - } - }, - "additionalProperties": false - }, - "fields": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "value": { - "type": "string" - }, - "inline": { - "type": "boolean" - } - }, - "additionalProperties": false, - "required": [ - "name", - "value" - ] - } - } - }, - "additionalProperties": false - }, - "EmbedImage": { - "type": "object", - "properties": { - "url": { - "type": "string" - }, - "proxy_url": { - "type": "string" - }, - "height": { - "type": "integer" - }, - "width": { - "type": "integer" - } - }, - "additionalProperties": false - } - }, "$schema": "http://json-schema.org/draft-07/schema#" }, "MfaCodesSchema": { @@ -1511,15 +1077,7 @@ "RelationshipPutSchema": { "type": "object", "properties": { - "type": { - "enum": [ - 1, - 2, - 3, - 4 - ], - "type": "number" - } + "type": {} }, "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#" @@ -1713,221 +1271,7 @@ }, "UserSettingsSchema": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "afk_timeout": { - "type": "integer" - }, - "allow_accessibility_detection": { - "type": "boolean" - }, - "animate_emoji": { - "type": "boolean" - }, - "animate_stickers": { - "type": "integer" - }, - "contact_sync_enabled": { - "type": "boolean" - }, - "convert_emoticons": { - "type": "boolean" - }, - "custom_status": { - "anyOf": [ - { - "$ref": "#/definitions/CustomStatus" - }, - { - "type": "null" - } - ] - }, - "default_guilds_restricted": { - "type": "boolean" - }, - "detect_platform_accounts": { - "type": "boolean" - }, - "developer_mode": { - "type": "boolean" - }, - "disable_games_tab": { - "type": "boolean" - }, - "enable_tts_command": { - "type": "boolean" - }, - "explicit_content_filter": { - "type": "integer" - }, - "friend_source_flags": { - "$ref": "#/definitions/FriendSourceFlags" - }, - "gateway_connected": { - "type": "boolean" - }, - "gif_auto_play": { - "type": "boolean" - }, - "guild_folders": { - "type": "array", - "items": { - "$ref": "#/definitions/GuildFolder" - } - }, - "guild_positions": { - "type": "array", - "items": { - "type": "string" - } - }, - "inline_attachment_media": { - "type": "boolean" - }, - "inline_embed_media": { - "type": "boolean" - }, - "locale": { - "type": "string" - }, - "message_display_compact": { - "type": "boolean" - }, - "native_phone_integration_enabled": { - "type": "boolean" - }, - "render_embeds": { - "type": "boolean" - }, - "render_reactions": { - "type": "boolean" - }, - "restricted_guilds": { - "type": "array", - "items": { - "type": "string" - } - }, - "show_current_game": { - "type": "boolean" - }, - "status": { - "enum": [ - "dnd", - "idle", - "invisible", - "offline", - "online" - ], - "type": "string" - }, - "stream_notifications_enabled": { - "type": "boolean" - }, - "theme": { - "enum": [ - "dark", - "white" - ], - "type": "string" - }, - "timezone_offset": { - "type": "integer" - }, - "hasId": { - "description": "Checks if entity has an id.\nIf entity composite compose ids, it will check them all.", - "type": "object", - "additionalProperties": false - }, - "save": { - "description": "Saves current entity in the database.\nIf entity does not exist in the database then inserts, otherwise updates.", - "type": "object", - "additionalProperties": false - }, - "remove": { - "description": "Removes current entity from the database.", - "type": "object", - "additionalProperties": false - }, - "softRemove": { - "description": "Records the delete date of current entity.", - "type": "object", - "additionalProperties": false - }, - "recover": { - "description": "Recovers a given entity in the database.", - "type": "object", - "additionalProperties": false - }, - "reload": { - "description": "Reloads entity data from the database.", - "type": "object", - "additionalProperties": false - } - }, "additionalProperties": false, - "definitions": { - "CustomStatus": { - "type": "object", - "properties": { - "emoji_id": { - "type": "string" - }, - "emoji_name": { - "type": "string" - }, - "expires_at": { - "type": "integer" - }, - "text": { - "type": "string" - } - }, - "additionalProperties": false - }, - "FriendSourceFlags": { - "type": "object", - "properties": { - "all": { - "type": "boolean" - } - }, - "additionalProperties": false, - "required": [ - "all" - ] - }, - "GuildFolder": { - "type": "object", - "properties": { - "color": { - "type": "integer" - }, - "guild_ids": { - "type": "array", - "items": { - "type": "string" - } - }, - "id": { - "type": "integer" - }, - "name": { - "type": "string" - } - }, - "additionalProperties": false, - "required": [ - "color", - "guild_ids", - "id", - "name" - ] - } - }, "$schema": "http://json-schema.org/draft-07/schema#" }, "VanityUrlSchema": { @@ -2008,173 +1352,116 @@ ], "$schema": "http://json-schema.org/draft-07/schema#" }, - "ActivitySchema": { + "ChannelModifySchema": { "type": "object", "properties": { - "afk": { - "type": "boolean" + "name": { + "maxLength": 100, + "type": "string" }, - "status": { - "$ref": "#/definitions/Status" + "type": { + "enum": [ + 0, + 1, + 10, + 11, + 12, + 13, + 14, + 15, + 2, + 255, + 3, + 33, + 34, + 35, + 4, + 5, + 6, + 64, + 7, + 8, + 9 + ], + "type": "number" }, - "activities": { + "topic": { + "type": "string" + }, + "icon": { + "type": [ + "null", + "string" + ] + }, + "bitrate": { + "type": "integer" + }, + "user_limit": { + "type": "integer" + }, + "rate_limit_per_user": { + "type": "integer" + }, + "position": { + "type": "integer" + }, + "permission_overwrites": { "type": "array", "items": { - "$ref": "#/definitions/Activity" + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "type": { + "$ref": "#/definitions/ChannelPermissionOverwriteType" + }, + "allow": { + "type": "string" + }, + "deny": { + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "allow", + "deny", + "id", + "type" + ] } }, - "since": { + "parent_id": { + "type": "string" + }, + "id": { + "type": "string" + }, + "nsfw": { + "type": "boolean" + }, + "rtc_region": { + "type": "string" + }, + "default_auto_archive_duration": { + "type": "integer" + }, + "flags": { + "type": "integer" + }, + "default_thread_rate_limit_per_user": { "type": "integer" } }, "additionalProperties": false, - "required": [ - "afk", - "status" - ], "definitions": { - "Status": { - "enum": [ - "dnd", - "idle", - "invisible", - "offline", - "online" - ], - "type": "string" - }, - "Activity": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "type": { - "$ref": "#/definitions/ActivityType" - }, - "url": { - "type": "string" - }, - "created_at": { - "type": "integer" - }, - "timestamps": { - "type": "object", - "properties": { - "start": { - "type": "integer" - }, - "end": { - "type": "integer" - } - }, - "additionalProperties": false, - "required": [ - "end", - "start" - ] - }, - "application_id": { - "type": "string" - }, - "details": { - "type": "string" - }, - "state": { - "type": "string" - }, - "emoji": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "id": { - "type": "string" - }, - "animated": { - "type": "boolean" - } - }, - "additionalProperties": false, - "required": [ - "animated", - "name" - ] - }, - "party": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "size": { - "type": "array", - "items": [ - { - "type": "integer" - } - ], - "minItems": 1, - "maxItems": 1 - } - }, - "additionalProperties": false - }, - "assets": { - "type": "object", - "properties": { - "large_image": { - "type": "string" - }, - "large_text": { - "type": "string" - }, - "small_image": { - "type": "string" - }, - "small_text": { - "type": "string" - } - }, - "additionalProperties": false - }, - "secrets": { - "type": "object", - "properties": { - "join": { - "type": "string" - }, - "spectate": { - "type": "string" - }, - "match": { - "type": "string" - } - }, - "additionalProperties": false - }, - "instance": { - "type": "boolean" - }, - "flags": { - "type": "string" - } - }, - "additionalProperties": false, - "required": [ - "flags", - "name", - "type" - ] - }, - "ActivityType": { + "ChannelPermissionOverwriteType": { "enum": [ 0, 1, - 2, - 4, - 5 + 2 ], "type": "number" } diff --git a/api/assets/user.css b/assets/user.css
index a7e5c4f3..a7e5c4f3 100644 --- a/api/assets/user.css +++ b/assets/user.css
diff --git a/api/assets/widget/banner1.png b/assets/widget/banner1.png
index ed9bd5c0..ed9bd5c0 100644 --- a/api/assets/widget/banner1.png +++ b/assets/widget/banner1.png
Binary files differdiff --git a/api/assets/widget/banner2.png b/assets/widget/banner2.png
index 90d3713d..90d3713d 100644 --- a/api/assets/widget/banner2.png +++ b/assets/widget/banner2.png
Binary files differdiff --git a/api/assets/widget/banner3.png b/assets/widget/banner3.png
index 22351898..22351898 100644 --- a/api/assets/widget/banner3.png +++ b/assets/widget/banner3.png
Binary files differdiff --git a/api/assets/widget/banner4.png b/assets/widget/banner4.png
index e6bd7b6f..e6bd7b6f 100644 --- a/api/assets/widget/banner4.png +++ b/assets/widget/banner4.png
Binary files differdiff --git a/api/assets/widget/shield.png b/assets/widget/shield.png
index 30277db2..30277db2 100644 --- a/api/assets/widget/shield.png +++ b/assets/widget/shield.png
Binary files differ