diff --git a/README.md b/README.md index 2133865..589cac4 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,28 @@

- +

-

Fosscord Server

+

Spacebar Server

- - - + + +

-## [About](https://fosscord.com) +## [About](https://spacebar.chat) This repository contains: -- [Fosscord HTTP API Server](/src/api) +- [Spacebar HTTP API Server](/src/api) - [WebSocket Gateway Server](/src/gateway) - [HTTP CDN Server](/src/cdn) - [Utility and Database Models](/src/util) -## [Contributing](https://docs.fosscord.com/contributing/) +## [Contributing](https://docs.spacebar.chat/contributing/) -## [Setup](https://docs.fosscord.com/setup/server/) +## [Setup](https://docs.spacebar.chat/setup/server/) diff --git a/assets/openapi.json b/assets/openapi.json index 7e1f3ca..e0b2e56 100644 --- a/assets/openapi.json +++ b/assets/openapi.json @@ -2,17 +2,17 @@ "openapi": "3.0.0", "servers": [ { - "url": "https://staging.fosscord.com/api/", - "description": "Official Fosscord Instance" + "url": "https://staging.spacebar.chat/api/", + "description": "Official Spacebar Instance" } ], "info": { - "description": "Fosscord is a free open source selfhostable discord compatible chat, voice and video platform", + "description": "Spacebar is a free open source selfhostable discord compatible chat, voice and video platform", "version": "1.0.0", - "title": "Fosscord HTTP API Routes", + "title": "Spacebar HTTP API Routes", "termsOfService": "", "contact": { - "name": "Fosscord" + "name": "Spacebar" }, "license": { "name": "AGPLV3", diff --git a/fosscord-server.code-workspace b/fosscord-server.code-workspace deleted file mode 100644 index b10a354..0000000 --- a/fosscord-server.code-workspace +++ /dev/null @@ -1,23 +0,0 @@ -{ - "folders": [ - { - "path": "src" - }, - { - "path": "assets" - }, - { - "path": "scripts" - }, - { - "path": "." - } - ], - "settings": { - "typescript.tsdk": "util\\node_modules\\typescript\\lib" - }, - "launch": { - "version": "0.2.0", - "configurations": [] - } -} diff --git a/server.code-workspace b/server.code-workspace new file mode 100644 index 0000000..b10a354 --- /dev/null +++ b/server.code-workspace @@ -0,0 +1,23 @@ +{ + "folders": [ + { + "path": "src" + }, + { + "path": "assets" + }, + { + "path": "scripts" + }, + { + "path": "." + } + ], + "settings": { + "typescript.tsdk": "util\\node_modules\\typescript\\lib" + }, + "launch": { + "version": "0.2.0", + "configurations": [] + } +} diff --git a/src/api/Server.ts b/src/api/Server.ts index 6ec531e..dc84a94 100644 --- a/src/api/Server.ts +++ b/src/api/Server.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/global.d.ts b/src/api/global.d.ts index e996933..da2f427 100644 --- a/src/api/global.d.ts +++ b/src/api/global.d.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/index.ts b/src/api/index.ts index 88dcdb3..1851807 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/middlewares/Authentication.ts b/src/api/middlewares/Authentication.ts index 771f0de..7a30312 100644 --- a/src/api/middlewares/Authentication.ts +++ b/src/api/middlewares/Authentication.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/middlewares/BodyParser.ts b/src/api/middlewares/BodyParser.ts index 646f33b..e5c037d 100644 --- a/src/api/middlewares/BodyParser.ts +++ b/src/api/middlewares/BodyParser.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/middlewares/CORS.ts b/src/api/middlewares/CORS.ts index e89fb90..2197c70 100644 --- a/src/api/middlewares/CORS.ts +++ b/src/api/middlewares/CORS.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/middlewares/ErrorHandler.ts b/src/api/middlewares/ErrorHandler.ts index a0664cc..469e8ee 100644 --- a/src/api/middlewares/ErrorHandler.ts +++ b/src/api/middlewares/ErrorHandler.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/middlewares/RateLimit.ts b/src/api/middlewares/RateLimit.ts index 1a28f35..576bbb9 100644 --- a/src/api/middlewares/RateLimit.ts +++ b/src/api/middlewares/RateLimit.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/middlewares/Translation.ts b/src/api/middlewares/Translation.ts index 928d29f..1d651f1 100644 --- a/src/api/middlewares/Translation.ts +++ b/src/api/middlewares/Translation.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/middlewares/index.ts b/src/api/middlewares/index.ts index 096a779..e4b67d8 100644 --- a/src/api/middlewares/index.ts +++ b/src/api/middlewares/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/-/healthz.ts b/src/api/routes/-/healthz.ts index a6be5a8..2d41483 100644 --- a/src/api/routes/-/healthz.ts +++ b/src/api/routes/-/healthz.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/-/readyz.ts b/src/api/routes/-/readyz.ts index a6be5a8..2d41483 100644 --- a/src/api/routes/-/readyz.ts +++ b/src/api/routes/-/readyz.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/applications/\043id/bot/index.ts" "b/src/api/routes/applications/\043id/bot/index.ts" index 9bc3c57..f0826ff 100644 --- "a/src/api/routes/applications/\043id/bot/index.ts" +++ "b/src/api/routes/applications/\043id/bot/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/applications/\043id/entitlements.ts" "b/src/api/routes/applications/\043id/entitlements.ts" index 98d992e..7903f51 100644 --- "a/src/api/routes/applications/\043id/entitlements.ts" +++ "b/src/api/routes/applications/\043id/entitlements.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/applications/\043id/index.ts" "b/src/api/routes/applications/\043id/index.ts" index 59e9016..695173a 100644 --- "a/src/api/routes/applications/\043id/index.ts" +++ "b/src/api/routes/applications/\043id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/applications/\043id/skus.ts" "b/src/api/routes/applications/\043id/skus.ts" index 5a3a479..fea2524 100644 --- "a/src/api/routes/applications/\043id/skus.ts" +++ "b/src/api/routes/applications/\043id/skus.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/applications/detectable.ts b/src/api/routes/applications/detectable.ts index 85062aa..0ec342e 100644 --- a/src/api/routes/applications/detectable.ts +++ b/src/api/routes/applications/detectable.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/applications/index.ts b/src/api/routes/applications/index.ts index 859ee14..56605e4 100644 --- a/src/api/routes/applications/index.ts +++ b/src/api/routes/applications/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/forgot.ts b/src/api/routes/auth/forgot.ts index 04df97d..31ebb16 100644 --- a/src/api/routes/auth/forgot.ts +++ b/src/api/routes/auth/forgot.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import { getIpAdress, route, verifyCaptcha } from "@fosscord/api"; import { Config, diff --git a/src/api/routes/auth/generate-registration-tokens.ts b/src/api/routes/auth/generate-registration-tokens.ts index c79d2a5..4458cfc 100644 --- a/src/api/routes/auth/generate-registration-tokens.ts +++ b/src/api/routes/auth/generate-registration-tokens.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/location-metadata.ts b/src/api/routes/auth/location-metadata.ts index 1ee8cd6..f6da3bd 100644 --- a/src/api/routes/auth/location-metadata.ts +++ b/src/api/routes/auth/location-metadata.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/login.ts b/src/api/routes/auth/login.ts index 9c6f233..dab87e4 100644 --- a/src/api/routes/auth/login.ts +++ b/src/api/routes/auth/login.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/logout.ts b/src/api/routes/auth/logout.ts index 43ba72a..adb995e 100644 --- a/src/api/routes/auth/logout.ts +++ b/src/api/routes/auth/logout.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/mfa/totp.ts b/src/api/routes/auth/mfa/totp.ts index bbbd123..3c2025a 100644 --- a/src/api/routes/auth/mfa/totp.ts +++ b/src/api/routes/auth/mfa/totp.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/mfa/webauthn.ts b/src/api/routes/auth/mfa/webauthn.ts index a9fa78b..63b12ca 100644 --- a/src/api/routes/auth/mfa/webauthn.ts +++ b/src/api/routes/auth/mfa/webauthn.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/register.ts b/src/api/routes/auth/register.ts index 0bf8efa..51efbc9 100644 --- a/src/api/routes/auth/register.ts +++ b/src/api/routes/auth/register.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/reset.ts b/src/api/routes/auth/reset.ts index 9ab25dc..79ef296 100644 --- a/src/api/routes/auth/reset.ts +++ b/src/api/routes/auth/reset.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import { route } from "@fosscord/api"; import { checkToken, diff --git a/src/api/routes/auth/verify/index.ts b/src/api/routes/auth/verify/index.ts index ac12bbb..cd95d59 100644 --- a/src/api/routes/auth/verify/index.ts +++ b/src/api/routes/auth/verify/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/verify/resend.ts b/src/api/routes/auth/verify/resend.ts index 918af9a..1043616 100644 --- a/src/api/routes/auth/verify/resend.ts +++ b/src/api/routes/auth/verify/resend.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/auth/verify/view-backup-codes-challenge.ts b/src/api/routes/auth/verify/view-backup-codes-challenge.ts index 3e1a6a9..31a9d16 100644 --- a/src/api/routes/auth/verify/view-backup-codes-challenge.ts +++ b/src/api/routes/auth/verify/view-backup-codes-challenge.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/followers.ts" "b/src/api/routes/channels/\043channel_id/followers.ts" index a9d5d4e..093eb3c 100644 --- "a/src/api/routes/channels/\043channel_id/followers.ts" +++ "b/src/api/routes/channels/\043channel_id/followers.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/index.ts" "b/src/api/routes/channels/\043channel_id/index.ts" index 4a2023d..d2228eb 100644 --- "a/src/api/routes/channels/\043channel_id/index.ts" +++ "b/src/api/routes/channels/\043channel_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/invites.ts" "b/src/api/routes/channels/\043channel_id/invites.ts" index 49620aa..af7dff0 100644 --- "a/src/api/routes/channels/\043channel_id/invites.ts" +++ "b/src/api/routes/channels/\043channel_id/invites.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/messages/\043message_id/ack.ts" "b/src/api/routes/channels/\043channel_id/messages/\043message_id/ack.ts" index 16c2de2..4800518 100644 --- "a/src/api/routes/channels/\043channel_id/messages/\043message_id/ack.ts" +++ "b/src/api/routes/channels/\043channel_id/messages/\043message_id/ack.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/messages/\043message_id/crosspost.ts" "b/src/api/routes/channels/\043channel_id/messages/\043message_id/crosspost.ts" index bbbefad..b054d41 100644 --- "a/src/api/routes/channels/\043channel_id/messages/\043message_id/crosspost.ts" +++ "b/src/api/routes/channels/\043channel_id/messages/\043message_id/crosspost.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/messages/\043message_id/index.ts" "b/src/api/routes/channels/\043channel_id/messages/\043message_id/index.ts" index 400b8f3..7152afb 100644 --- "a/src/api/routes/channels/\043channel_id/messages/\043message_id/index.ts" +++ "b/src/api/routes/channels/\043channel_id/messages/\043message_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/messages/\043message_id/reactions.ts" "b/src/api/routes/channels/\043channel_id/messages/\043message_id/reactions.ts" index c3598b2..94449cc 100644 --- "a/src/api/routes/channels/\043channel_id/messages/\043message_id/reactions.ts" +++ "b/src/api/routes/channels/\043channel_id/messages/\043message_id/reactions.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/messages/bulk-delete.ts" "b/src/api/routes/channels/\043channel_id/messages/bulk-delete.ts" index ee039d3..c816e04 100644 --- "a/src/api/routes/channels/\043channel_id/messages/bulk-delete.ts" +++ "b/src/api/routes/channels/\043channel_id/messages/bulk-delete.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/messages/index.ts" "b/src/api/routes/channels/\043channel_id/messages/index.ts" index 76f6a0d..4381484 100644 --- "a/src/api/routes/channels/\043channel_id/messages/index.ts" +++ "b/src/api/routes/channels/\043channel_id/messages/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/permissions.ts" "b/src/api/routes/channels/\043channel_id/permissions.ts" index da44867..4669eb7 100644 --- "a/src/api/routes/channels/\043channel_id/permissions.ts" +++ "b/src/api/routes/channels/\043channel_id/permissions.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/pins.ts" "b/src/api/routes/channels/\043channel_id/pins.ts" index 2841938..cf20d07 100644 --- "a/src/api/routes/channels/\043channel_id/pins.ts" +++ "b/src/api/routes/channels/\043channel_id/pins.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/purge.ts" "b/src/api/routes/channels/\043channel_id/purge.ts" index 04d8cfa..1e6c2f5 100644 --- "a/src/api/routes/channels/\043channel_id/purge.ts" +++ "b/src/api/routes/channels/\043channel_id/purge.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/recipients.ts" "b/src/api/routes/channels/\043channel_id/recipients.ts" index 252a8ef..111a243 100644 --- "a/src/api/routes/channels/\043channel_id/recipients.ts" +++ "b/src/api/routes/channels/\043channel_id/recipients.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/typing.ts" "b/src/api/routes/channels/\043channel_id/typing.ts" index b50123c..ba21283 100644 --- "a/src/api/routes/channels/\043channel_id/typing.ts" +++ "b/src/api/routes/channels/\043channel_id/typing.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/channels/\043channel_id/webhooks.ts" "b/src/api/routes/channels/\043channel_id/webhooks.ts" index 31cae74..85530e3 100644 --- "a/src/api/routes/channels/\043channel_id/webhooks.ts" +++ "b/src/api/routes/channels/\043channel_id/webhooks.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/discoverable-guilds.ts b/src/api/routes/discoverable-guilds.ts index 8f90d73..cc3c61d 100644 --- a/src/api/routes/discoverable-guilds.ts +++ b/src/api/routes/discoverable-guilds.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/discovery.ts b/src/api/routes/discovery.ts index 1414a61..50d9d96 100644 --- a/src/api/routes/discovery.ts +++ b/src/api/routes/discovery.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/download.ts b/src/api/routes/download.ts index b6c03a4..e32d86b 100644 --- a/src/api/routes/download.ts +++ b/src/api/routes/download.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/experiments.ts b/src/api/routes/experiments.ts index 8c32afd..3138e58 100644 --- a/src/api/routes/experiments.ts +++ b/src/api/routes/experiments.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/gateway/bot.ts b/src/api/routes/gateway/bot.ts index 02049b1..72f8d90 100644 --- a/src/api/routes/gateway/bot.ts +++ b/src/api/routes/gateway/bot.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/gateway/index.ts b/src/api/routes/gateway/index.ts index f5ed4c1..b7dd490 100644 --- a/src/api/routes/gateway/index.ts +++ b/src/api/routes/gateway/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/gifs/search.ts b/src/api/routes/gifs/search.ts index ae63d64..cbd89c3 100644 --- a/src/api/routes/gifs/search.ts +++ b/src/api/routes/gifs/search.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/gifs/trending-gifs.ts b/src/api/routes/gifs/trending-gifs.ts index d0698fa..389f72f 100644 --- a/src/api/routes/gifs/trending-gifs.ts +++ b/src/api/routes/gifs/trending-gifs.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/gifs/trending.ts b/src/api/routes/gifs/trending.ts index 5c872df..2631eab 100644 --- a/src/api/routes/gifs/trending.ts +++ b/src/api/routes/gifs/trending.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/guild-recommendations.ts b/src/api/routes/guild-recommendations.ts index ac2ad9e..e7112b9 100644 --- a/src/api/routes/guild-recommendations.ts +++ b/src/api/routes/guild-recommendations.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/audit-logs.ts" "b/src/api/routes/guilds/\043guild_id/audit-logs.ts" index c0e8e63..b27c232 100644 --- "a/src/api/routes/guilds/\043guild_id/audit-logs.ts" +++ "b/src/api/routes/guilds/\043guild_id/audit-logs.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/bans.ts" "b/src/api/routes/guilds/\043guild_id/bans.ts" index b044689..ee0e4dd 100644 --- "a/src/api/routes/guilds/\043guild_id/bans.ts" +++ "b/src/api/routes/guilds/\043guild_id/bans.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/channels.ts" "b/src/api/routes/guilds/\043guild_id/channels.ts" index acdb5f1..176d4f7 100644 --- "a/src/api/routes/guilds/\043guild_id/channels.ts" +++ "b/src/api/routes/guilds/\043guild_id/channels.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/delete.ts" "b/src/api/routes/guilds/\043guild_id/delete.ts" index 9a13c9b..236d53b 100644 --- "a/src/api/routes/guilds/\043guild_id/delete.ts" +++ "b/src/api/routes/guilds/\043guild_id/delete.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/discovery-requirements.ts" "b/src/api/routes/guilds/\043guild_id/discovery-requirements.ts" index de2da6e..8dbf68a 100644 --- "a/src/api/routes/guilds/\043guild_id/discovery-requirements.ts" +++ "b/src/api/routes/guilds/\043guild_id/discovery-requirements.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/emojis.ts" "b/src/api/routes/guilds/\043guild_id/emojis.ts" index 491c9be..e907fe9 100644 --- "a/src/api/routes/guilds/\043guild_id/emojis.ts" +++ "b/src/api/routes/guilds/\043guild_id/emojis.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/index.ts" "b/src/api/routes/guilds/\043guild_id/index.ts" index c262a08..01da7f0 100644 --- "a/src/api/routes/guilds/\043guild_id/index.ts" +++ "b/src/api/routes/guilds/\043guild_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/integrations.ts" "b/src/api/routes/guilds/\043guild_id/integrations.ts" index 4a274fb..7588288 100644 --- "a/src/api/routes/guilds/\043guild_id/integrations.ts" +++ "b/src/api/routes/guilds/\043guild_id/integrations.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/invites.ts" "b/src/api/routes/guilds/\043guild_id/invites.ts" index dd09999..7b37b49 100644 --- "a/src/api/routes/guilds/\043guild_id/invites.ts" +++ "b/src/api/routes/guilds/\043guild_id/invites.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/member-verification.ts" "b/src/api/routes/guilds/\043guild_id/member-verification.ts" index 6d1f7bb..ab6c728 100644 --- "a/src/api/routes/guilds/\043guild_id/member-verification.ts" +++ "b/src/api/routes/guilds/\043guild_id/member-verification.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/members/\043member_id/index.ts" "b/src/api/routes/guilds/\043guild_id/members/\043member_id/index.ts" index 6ac0dd3..01b91d7 100644 --- "a/src/api/routes/guilds/\043guild_id/members/\043member_id/index.ts" +++ "b/src/api/routes/guilds/\043guild_id/members/\043member_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/members/\043member_id/nick.ts" "b/src/api/routes/guilds/\043guild_id/members/\043member_id/nick.ts" index c93eab0..fc12ded 100644 --- "a/src/api/routes/guilds/\043guild_id/members/\043member_id/nick.ts" +++ "b/src/api/routes/guilds/\043guild_id/members/\043member_id/nick.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/members/\043member_id/roles/\043role_id/index.ts" "b/src/api/routes/guilds/\043guild_id/members/\043member_id/roles/\043role_id/index.ts" index 16c5e78..b6d56d1 100644 --- "a/src/api/routes/guilds/\043guild_id/members/\043member_id/roles/\043role_id/index.ts" +++ "b/src/api/routes/guilds/\043guild_id/members/\043member_id/roles/\043role_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/members/index.ts" "b/src/api/routes/guilds/\043guild_id/members/index.ts" index 51e9eb1..f207963 100644 --- "a/src/api/routes/guilds/\043guild_id/members/index.ts" +++ "b/src/api/routes/guilds/\043guild_id/members/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/messages/search.ts" "b/src/api/routes/guilds/\043guild_id/messages/search.ts" index 601167e..1ccff80 100644 --- "a/src/api/routes/guilds/\043guild_id/messages/search.ts" +++ "b/src/api/routes/guilds/\043guild_id/messages/search.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/premium.ts" "b/src/api/routes/guilds/\043guild_id/premium.ts" index 61f6a22..b975f17 100644 --- "a/src/api/routes/guilds/\043guild_id/premium.ts" +++ "b/src/api/routes/guilds/\043guild_id/premium.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/profile/index.ts" "b/src/api/routes/guilds/\043guild_id/profile/index.ts" index cbf0ff6..fe7a58b 100644 --- "a/src/api/routes/guilds/\043guild_id/profile/index.ts" +++ "b/src/api/routes/guilds/\043guild_id/profile/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/prune.ts" "b/src/api/routes/guilds/\043guild_id/prune.ts" index 37b70f6..5c123b2 100644 --- "a/src/api/routes/guilds/\043guild_id/prune.ts" +++ "b/src/api/routes/guilds/\043guild_id/prune.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/regions.ts" "b/src/api/routes/guilds/\043guild_id/regions.ts" index 61ba00b..8441edb 100644 --- "a/src/api/routes/guilds/\043guild_id/regions.ts" +++ "b/src/api/routes/guilds/\043guild_id/regions.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/roles/\043role_id/index.ts" "b/src/api/routes/guilds/\043guild_id/roles/\043role_id/index.ts" index 48e7789..ee91454 100644 --- "a/src/api/routes/guilds/\043guild_id/roles/\043role_id/index.ts" +++ "b/src/api/routes/guilds/\043guild_id/roles/\043role_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/roles/index.ts" "b/src/api/routes/guilds/\043guild_id/roles/index.ts" index 54d4b12..226feac 100644 --- "a/src/api/routes/guilds/\043guild_id/roles/index.ts" +++ "b/src/api/routes/guilds/\043guild_id/roles/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/stickers.ts" "b/src/api/routes/guilds/\043guild_id/stickers.ts" index 47fa373..5d691eb 100644 --- "a/src/api/routes/guilds/\043guild_id/stickers.ts" +++ "b/src/api/routes/guilds/\043guild_id/stickers.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/templates.ts" "b/src/api/routes/guilds/\043guild_id/templates.ts" index 284bbcc..52703b4 100644 --- "a/src/api/routes/guilds/\043guild_id/templates.ts" +++ "b/src/api/routes/guilds/\043guild_id/templates.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/vanity-url.ts" "b/src/api/routes/guilds/\043guild_id/vanity-url.ts" index b11bead..6ce4d17 100644 --- "a/src/api/routes/guilds/\043guild_id/vanity-url.ts" +++ "b/src/api/routes/guilds/\043guild_id/vanity-url.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/voice-states/\043user_id/index.ts" "b/src/api/routes/guilds/\043guild_id/voice-states/\043user_id/index.ts" index 3577df1..ae41a59 100644 --- "a/src/api/routes/guilds/\043guild_id/voice-states/\043user_id/index.ts" +++ "b/src/api/routes/guilds/\043guild_id/voice-states/\043user_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/webhooks.ts" "b/src/api/routes/guilds/\043guild_id/webhooks.ts" index f4bf1da..aeee38e 100644 --- "a/src/api/routes/guilds/\043guild_id/webhooks.ts" +++ "b/src/api/routes/guilds/\043guild_id/webhooks.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/welcome-screen.ts" "b/src/api/routes/guilds/\043guild_id/welcome-screen.ts" index f366201..27cab59 100644 --- "a/src/api/routes/guilds/\043guild_id/welcome-screen.ts" +++ "b/src/api/routes/guilds/\043guild_id/welcome-screen.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/widget.json.ts" "b/src/api/routes/guilds/\043guild_id/widget.json.ts" index 9319d05..5c73801 100644 --- "a/src/api/routes/guilds/\043guild_id/widget.json.ts" +++ "b/src/api/routes/guilds/\043guild_id/widget.json.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/widget.png.ts" "b/src/api/routes/guilds/\043guild_id/widget.png.ts" index 65de897..614f0cb 100644 --- "a/src/api/routes/guilds/\043guild_id/widget.png.ts" +++ "b/src/api/routes/guilds/\043guild_id/widget.png.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/guilds/\043guild_id/widget.ts" "b/src/api/routes/guilds/\043guild_id/widget.ts" index d2fcf58..f0b12f9 100644 --- "a/src/api/routes/guilds/\043guild_id/widget.ts" +++ "b/src/api/routes/guilds/\043guild_id/widget.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/guilds/index.ts b/src/api/routes/guilds/index.ts index 64af4bd..2469ee7 100644 --- a/src/api/routes/guilds/index.ts +++ b/src/api/routes/guilds/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/guilds/templates/index.ts b/src/api/routes/guilds/templates/index.ts index a43337d..c393b27 100644 --- a/src/api/routes/guilds/templates/index.ts +++ b/src/api/routes/guilds/templates/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/invites/index.ts b/src/api/routes/invites/index.ts index b1afee5..b94823a 100644 --- a/src/api/routes/invites/index.ts +++ b/src/api/routes/invites/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/oauth2/authorize.ts b/src/api/routes/oauth2/authorize.ts index e238b72..99865ac 100644 --- a/src/api/routes/oauth2/authorize.ts +++ b/src/api/routes/oauth2/authorize.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/oauth2/tokens.ts b/src/api/routes/oauth2/tokens.ts index 7780117..0f7fa5b 100644 --- a/src/api/routes/oauth2/tokens.ts +++ b/src/api/routes/oauth2/tokens.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/outbound-promotions.ts b/src/api/routes/outbound-promotions.ts index 74315bf..7b8e486 100644 --- a/src/api/routes/outbound-promotions.ts +++ b/src/api/routes/outbound-promotions.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/partners/\043guild_id/requirements.ts" "b/src/api/routes/partners/\043guild_id/requirements.ts" index de2da6e..8dbf68a 100644 --- "a/src/api/routes/partners/\043guild_id/requirements.ts" +++ "b/src/api/routes/partners/\043guild_id/requirements.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/ping.ts b/src/api/routes/ping.ts index f13117b..c567f7c 100644 --- a/src/api/routes/ping.ts +++ b/src/api/routes/ping.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/policies/instance/domains.ts b/src/api/routes/policies/instance/domains.ts index c95493b..472fd6d 100644 --- a/src/api/routes/policies/instance/domains.ts +++ b/src/api/routes/policies/instance/domains.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/policies/instance/index.ts b/src/api/routes/policies/instance/index.ts index 394933b..a4fd706 100644 --- a/src/api/routes/policies/instance/index.ts +++ b/src/api/routes/policies/instance/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/policies/instance/limits.ts b/src/api/routes/policies/instance/limits.ts index a169a1b..406d88c 100644 --- a/src/api/routes/policies/instance/limits.ts +++ b/src/api/routes/policies/instance/limits.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/policies/stats.ts b/src/api/routes/policies/stats.ts index b7ff477..782101b 100644 --- a/src/api/routes/policies/stats.ts +++ b/src/api/routes/policies/stats.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/read-states/ack-bulk.ts b/src/api/routes/read-states/ack-bulk.ts index 2e4da95..582cf7f 100644 --- a/src/api/routes/read-states/ack-bulk.ts +++ b/src/api/routes/read-states/ack-bulk.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/scheduled-maintenances/upcoming_json.ts b/src/api/routes/scheduled-maintenances/upcoming_json.ts index deacdac..c117c7c 100644 --- a/src/api/routes/scheduled-maintenances/upcoming_json.ts +++ b/src/api/routes/scheduled-maintenances/upcoming_json.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/science.ts b/src/api/routes/science.ts index e2ce9e0..fc74bca 100644 --- a/src/api/routes/science.ts +++ b/src/api/routes/science.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/stage-instances.ts b/src/api/routes/stage-instances.ts index 74315bf..7b8e486 100644 --- a/src/api/routes/stage-instances.ts +++ b/src/api/routes/stage-instances.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/sticker-packs/index.ts b/src/api/routes/sticker-packs/index.ts index 6c5ce9f..71104cb 100644 --- a/src/api/routes/sticker-packs/index.ts +++ b/src/api/routes/sticker-packs/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/stickers/\043sticker_id/index.ts" "b/src/api/routes/stickers/\043sticker_id/index.ts" index 956bea6..aa2990f 100644 --- "a/src/api/routes/stickers/\043sticker_id/index.ts" +++ "b/src/api/routes/stickers/\043sticker_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/stop.ts b/src/api/routes/stop.ts index fb6ac46..1b21f68 100644 --- a/src/api/routes/stop.ts +++ b/src/api/routes/stop.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/store/published-listings/applications.ts b/src/api/routes/store/published-listings/applications.ts index ec9168b..2afee7c 100644 --- a/src/api/routes/store/published-listings/applications.ts +++ b/src/api/routes/store/published-listings/applications.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/store/published-listings/applications/\043id/subscription-plans.ts" "b/src/api/routes/store/published-listings/applications/\043id/subscription-plans.ts" index b217144..638dec4 100644 --- "a/src/api/routes/store/published-listings/applications/\043id/subscription-plans.ts" +++ "b/src/api/routes/store/published-listings/applications/\043id/subscription-plans.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/store/published-listings/skus.ts b/src/api/routes/store/published-listings/skus.ts index ec9168b..2afee7c 100644 --- a/src/api/routes/store/published-listings/skus.ts +++ b/src/api/routes/store/published-listings/skus.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/store/published-listings/skus/\043sku_id/subscription-plans.ts" "b/src/api/routes/store/published-listings/skus/\043sku_id/subscription-plans.ts" index 26285d3..e9f1603 100644 --- "a/src/api/routes/store/published-listings/skus/\043sku_id/subscription-plans.ts" +++ "b/src/api/routes/store/published-listings/skus/\043sku_id/subscription-plans.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/teams.ts b/src/api/routes/teams.ts index 38371b9..fdd0c2e 100644 --- a/src/api/routes/teams.ts +++ b/src/api/routes/teams.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/track.ts b/src/api/routes/track.ts index e2ce9e0..fc74bca 100644 --- a/src/api/routes/track.ts +++ b/src/api/routes/track.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/updates.ts b/src/api/routes/updates.ts index 5c23746..be39cd3 100644 --- a/src/api/routes/updates.ts +++ b/src/api/routes/updates.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/users/\043id/delete.ts" "b/src/api/routes/users/\043id/delete.ts" index 9bc3f9f..e208173 100644 --- "a/src/api/routes/users/\043id/delete.ts" +++ "b/src/api/routes/users/\043id/delete.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/users/\043id/index.ts" "b/src/api/routes/users/\043id/index.ts" index 14313c1..95d6a1c 100644 --- "a/src/api/routes/users/\043id/index.ts" +++ "b/src/api/routes/users/\043id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/users/\043id/profile.ts" "b/src/api/routes/users/\043id/profile.ts" index 92b4a0f..a368a13 100644 --- "a/src/api/routes/users/\043id/profile.ts" +++ "b/src/api/routes/users/\043id/profile.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/users/\043id/relationships.ts" "b/src/api/routes/users/\043id/relationships.ts" index 04a407b..edd028d 100644 --- "a/src/api/routes/users/\043id/relationships.ts" +++ "b/src/api/routes/users/\043id/relationships.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/activities/statistics/applications.ts b/src/api/routes/users/@me/activities/statistics/applications.ts index 105249e..44f35b6 100644 --- a/src/api/routes/users/@me/activities/statistics/applications.ts +++ b/src/api/routes/users/@me/activities/statistics/applications.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/affinities/guilds.ts b/src/api/routes/users/@me/affinities/guilds.ts index 502b776..080ba06 100644 --- a/src/api/routes/users/@me/affinities/guilds.ts +++ b/src/api/routes/users/@me/affinities/guilds.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/affinities/users.ts b/src/api/routes/users/@me/affinities/users.ts index 292532c..6262975 100644 --- a/src/api/routes/users/@me/affinities/users.ts +++ b/src/api/routes/users/@me/affinities/users.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/users/@me/applications/\043app_id/entitlements.ts" "b/src/api/routes/users/@me/applications/\043app_id/entitlements.ts" index 74315bf..7b8e486 100644 --- "a/src/api/routes/users/@me/applications/\043app_id/entitlements.ts" +++ "b/src/api/routes/users/@me/applications/\043app_id/entitlements.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/billing/country-code.ts b/src/api/routes/users/@me/billing/country-code.ts index bd3d3ac..9d149fe 100644 --- a/src/api/routes/users/@me/billing/country-code.ts +++ b/src/api/routes/users/@me/billing/country-code.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/billing/payment-sources.ts b/src/api/routes/users/@me/billing/payment-sources.ts index 105249e..44f35b6 100644 --- a/src/api/routes/users/@me/billing/payment-sources.ts +++ b/src/api/routes/users/@me/billing/payment-sources.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/billing/subscriptions.ts b/src/api/routes/users/@me/billing/subscriptions.ts index 74315bf..7b8e486 100644 --- a/src/api/routes/users/@me/billing/subscriptions.ts +++ b/src/api/routes/users/@me/billing/subscriptions.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/channels.ts b/src/api/routes/users/@me/channels.ts index 5d05c5c..01151f2 100644 --- a/src/api/routes/users/@me/channels.ts +++ b/src/api/routes/users/@me/channels.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/connections.ts b/src/api/routes/users/@me/connections.ts index 74315bf..7b8e486 100644 --- a/src/api/routes/users/@me/connections.ts +++ b/src/api/routes/users/@me/connections.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/delete.ts b/src/api/routes/users/@me/delete.ts index 8043eae..bd7ac8b 100644 --- a/src/api/routes/users/@me/delete.ts +++ b/src/api/routes/users/@me/delete.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/devices.ts b/src/api/routes/users/@me/devices.ts index e2ce9e0..fc74bca 100644 --- a/src/api/routes/users/@me/devices.ts +++ b/src/api/routes/users/@me/devices.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/disable.ts b/src/api/routes/users/@me/disable.ts index 9cb6e5c..25cfb21 100644 --- a/src/api/routes/users/@me/disable.ts +++ b/src/api/routes/users/@me/disable.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/email-settings.ts b/src/api/routes/users/@me/email-settings.ts index a95fa65..277c8db 100644 --- a/src/api/routes/users/@me/email-settings.ts +++ b/src/api/routes/users/@me/email-settings.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/entitlements.ts b/src/api/routes/users/@me/entitlements.ts index c4376cd..fac7d9e 100644 --- a/src/api/routes/users/@me/entitlements.ts +++ b/src/api/routes/users/@me/entitlements.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/guilds.ts b/src/api/routes/users/@me/guilds.ts index 4166643..61f4ca0 100644 --- a/src/api/routes/users/@me/guilds.ts +++ b/src/api/routes/users/@me/guilds.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/users/@me/guilds/\043guild_id/settings.ts" "b/src/api/routes/users/@me/guilds/\043guild_id/settings.ts" index 72c95d6..914204b 100644 --- "a/src/api/routes/users/@me/guilds/\043guild_id/settings.ts" +++ "b/src/api/routes/users/@me/guilds/\043guild_id/settings.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/guilds/premium/subscription-slots.ts b/src/api/routes/users/@me/guilds/premium/subscription-slots.ts index 105249e..44f35b6 100644 --- a/src/api/routes/users/@me/guilds/premium/subscription-slots.ts +++ b/src/api/routes/users/@me/guilds/premium/subscription-slots.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/index.ts b/src/api/routes/users/@me/index.ts index 3009134..2252e22 100644 --- a/src/api/routes/users/@me/index.ts +++ b/src/api/routes/users/@me/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/library.ts b/src/api/routes/users/@me/library.ts index b04cbe5..520420b 100644 --- a/src/api/routes/users/@me/library.ts +++ b/src/api/routes/users/@me/library.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/mfa/codes-verification.ts b/src/api/routes/users/@me/mfa/codes-verification.ts index 24f018c..fc38a76 100644 --- a/src/api/routes/users/@me/mfa/codes-verification.ts +++ b/src/api/routes/users/@me/mfa/codes-verification.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/mfa/codes.ts b/src/api/routes/users/@me/mfa/codes.ts index e260040..9b977bb 100644 --- a/src/api/routes/users/@me/mfa/codes.ts +++ b/src/api/routes/users/@me/mfa/codes.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/mfa/totp/disable.ts b/src/api/routes/users/@me/mfa/totp/disable.ts index e35691a..10cb83f 100644 --- a/src/api/routes/users/@me/mfa/totp/disable.ts +++ b/src/api/routes/users/@me/mfa/totp/disable.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/mfa/totp/enable.ts b/src/api/routes/users/@me/mfa/totp/enable.ts index f6519ad..e0c351a 100644 --- a/src/api/routes/users/@me/mfa/totp/enable.ts +++ b/src/api/routes/users/@me/mfa/totp/enable.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git "a/src/api/routes/users/@me/mfa/webauthn/credentials/\043key_id/index.ts" "b/src/api/routes/users/@me/mfa/webauthn/credentials/\043key_id/index.ts" index a4381f3..e218861 100644 --- "a/src/api/routes/users/@me/mfa/webauthn/credentials/\043key_id/index.ts" +++ "b/src/api/routes/users/@me/mfa/webauthn/credentials/\043key_id/index.ts" @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/mfa/webauthn/credentials/index.ts b/src/api/routes/users/@me/mfa/webauthn/credentials/index.ts index 85fb251..f3de9c3 100644 --- a/src/api/routes/users/@me/mfa/webauthn/credentials/index.ts +++ b/src/api/routes/users/@me/mfa/webauthn/credentials/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/notes.ts b/src/api/routes/users/@me/notes.ts index 64730c1..7948015 100644 --- a/src/api/routes/users/@me/notes.ts +++ b/src/api/routes/users/@me/notes.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/relationships.ts b/src/api/routes/users/@me/relationships.ts index 4dfb4c3..910b55d 100644 --- a/src/api/routes/users/@me/relationships.ts +++ b/src/api/routes/users/@me/relationships.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/users/@me/settings.ts b/src/api/routes/users/@me/settings.ts index cfcedec..045d4ae 100644 --- a/src/api/routes/users/@me/settings.ts +++ b/src/api/routes/users/@me/settings.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/routes/voice/regions.ts b/src/api/routes/voice/regions.ts index b7e8773..45834fc 100644 --- a/src/api/routes/voice/regions.ts +++ b/src/api/routes/voice/regions.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/start.ts b/src/api/start.ts index 7975d08..560f858 100644 --- a/src/api/start.ts +++ b/src/api/start.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/handlers/Instance.ts b/src/api/util/handlers/Instance.ts index 0815720..8670a88 100644 --- a/src/api/util/handlers/Instance.ts +++ b/src/api/util/handlers/Instance.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/handlers/Message.ts b/src/api/util/handlers/Message.ts index e514d40..65facb3 100644 --- a/src/api/util/handlers/Message.ts +++ b/src/api/util/handlers/Message.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/handlers/Voice.ts b/src/api/util/handlers/Voice.ts index 24bfa7b..d49878c 100644 --- a/src/api/util/handlers/Voice.ts +++ b/src/api/util/handlers/Voice.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/handlers/route.ts b/src/api/util/handlers/route.ts index cb16063..7b56e17 100644 --- a/src/api/util/handlers/route.ts +++ b/src/api/util/handlers/route.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/index.ts b/src/api/util/index.ts index 09b6170..4cc93af 100644 --- a/src/api/util/index.ts +++ b/src/api/util/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/utility/Base64.ts b/src/api/util/utility/Base64.ts index 892e0ad..4f7034c 100644 --- a/src/api/util/utility/Base64.ts +++ b/src/api/util/utility/Base64.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/utility/EmbedHandlers.ts b/src/api/util/utility/EmbedHandlers.ts index 8466a37..40d7679 100644 --- a/src/api/util/utility/EmbedHandlers.ts +++ b/src/api/util/utility/EmbedHandlers.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/utility/RandomInviteID.ts b/src/api/util/utility/RandomInviteID.ts index 7ce54ad..0bcca2d 100644 --- a/src/api/util/utility/RandomInviteID.ts +++ b/src/api/util/utility/RandomInviteID.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/utility/String.ts b/src/api/util/utility/String.ts index 3137e3c..4c63388 100644 --- a/src/api/util/utility/String.ts +++ b/src/api/util/utility/String.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/utility/captcha.ts b/src/api/util/utility/captcha.ts index bd05582..8b11b23 100644 --- a/src/api/util/utility/captcha.ts +++ b/src/api/util/utility/captcha.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/utility/ipAddress.ts b/src/api/util/utility/ipAddress.ts index 71a4868..99f58b7 100644 --- a/src/api/util/utility/ipAddress.ts +++ b/src/api/util/utility/ipAddress.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/api/util/utility/passwordStrength.ts b/src/api/util/utility/passwordStrength.ts index b293b85..638df5d 100644 --- a/src/api/util/utility/passwordStrength.ts +++ b/src/api/util/utility/passwordStrength.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/bundle/Server.ts b/src/bundle/Server.ts index 119bb52..74969dc 100644 --- a/src/bundle/Server.ts +++ b/src/bundle/Server.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/bundle/index.ts b/src/bundle/index.ts index 617dc71..a883cad 100644 --- a/src/bundle/index.ts +++ b/src/bundle/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/bundle/start.ts b/src/bundle/start.ts index 8da3cc2..604064c 100644 --- a/src/bundle/start.ts +++ b/src/bundle/start.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/bundle/stats.ts b/src/bundle/stats.ts index 6e5bed3..73175c0 100644 --- a/src/bundle/stats.ts +++ b/src/bundle/stats.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/Server.ts b/src/cdn/Server.ts index 37317bf..b3bcfc5 100644 --- a/src/cdn/Server.ts +++ b/src/cdn/Server.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/index.ts b/src/cdn/index.ts index 0c06b8d..1f8ac72 100644 --- a/src/cdn/index.ts +++ b/src/cdn/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/routes/attachments.ts b/src/cdn/routes/attachments.ts index 398a243..d5950f1 100644 --- a/src/cdn/routes/attachments.ts +++ b/src/cdn/routes/attachments.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/routes/avatars.ts b/src/cdn/routes/avatars.ts index 7dc23d6..6493462 100644 --- a/src/cdn/routes/avatars.ts +++ b/src/cdn/routes/avatars.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/routes/embed.ts b/src/cdn/routes/embed.ts index d49d69f..811ddb9 100644 --- a/src/cdn/routes/embed.ts +++ b/src/cdn/routes/embed.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/routes/guild-profiles.ts b/src/cdn/routes/guild-profiles.ts index ae8786a..f872e03 100644 --- a/src/cdn/routes/guild-profiles.ts +++ b/src/cdn/routes/guild-profiles.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/routes/ping.ts b/src/cdn/routes/ping.ts index 682c38c..46afeca 100644 --- a/src/cdn/routes/ping.ts +++ b/src/cdn/routes/ping.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/routes/role-icons.ts b/src/cdn/routes/role-icons.ts index 8f10ab7..93702f8 100644 --- a/src/cdn/routes/role-icons.ts +++ b/src/cdn/routes/role-icons.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/start.ts b/src/cdn/start.ts index c36a6b7..0080691 100644 --- a/src/cdn/start.ts +++ b/src/cdn/start.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/util/FileStorage.ts b/src/cdn/util/FileStorage.ts index ee087c8..956ea21 100644 --- a/src/cdn/util/FileStorage.ts +++ b/src/cdn/util/FileStorage.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/util/S3Storage.ts b/src/cdn/util/S3Storage.ts index 480fd9f..f2d8265 100644 --- a/src/cdn/util/S3Storage.ts +++ b/src/cdn/util/S3Storage.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/util/Storage.ts b/src/cdn/util/Storage.ts index 0d55bbd..7cf4fb2 100644 --- a/src/cdn/util/Storage.ts +++ b/src/cdn/util/Storage.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/util/index.ts b/src/cdn/util/index.ts index 4574fb1..c87c23c 100644 --- a/src/cdn/util/index.ts +++ b/src/cdn/util/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/cdn/util/multer.ts b/src/cdn/util/multer.ts index 5e0e447..ef0df57 100644 --- a/src/cdn/util/multer.ts +++ b/src/cdn/util/multer.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts index 3eec5c8..61a8320 100644 --- a/src/gateway/Server.ts +++ b/src/gateway/Server.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/events/Close.ts b/src/gateway/events/Close.ts index 296ab5e..544362d 100644 --- a/src/gateway/events/Close.ts +++ b/src/gateway/events/Close.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/events/Connection.ts b/src/gateway/events/Connection.ts index 1c902de..b166321 100644 --- a/src/gateway/events/Connection.ts +++ b/src/gateway/events/Connection.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/events/Message.ts b/src/gateway/events/Message.ts index 16e4518..53e96b3 100644 --- a/src/gateway/events/Message.ts +++ b/src/gateway/events/Message.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/index.ts b/src/gateway/index.ts index 0748e80..fe4b76c 100644 --- a/src/gateway/index.ts +++ b/src/gateway/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/listener/listener.ts b/src/gateway/listener/listener.ts index 824341f..5700b4e 100644 --- a/src/gateway/listener/listener.ts +++ b/src/gateway/listener/listener.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/Heartbeat.ts b/src/gateway/opcodes/Heartbeat.ts index 77c8671..88968a3 100644 --- a/src/gateway/opcodes/Heartbeat.ts +++ b/src/gateway/opcodes/Heartbeat.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts index 1a632b8..e465516 100644 --- a/src/gateway/opcodes/Identify.ts +++ b/src/gateway/opcodes/Identify.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/LazyRequest.ts b/src/gateway/opcodes/LazyRequest.ts index b7fff4d..d1806f9 100644 --- a/src/gateway/opcodes/LazyRequest.ts +++ b/src/gateway/opcodes/LazyRequest.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/PresenceUpdate.ts b/src/gateway/opcodes/PresenceUpdate.ts index 016aa33..7951422 100644 --- a/src/gateway/opcodes/PresenceUpdate.ts +++ b/src/gateway/opcodes/PresenceUpdate.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/RequestGuildMembers.ts b/src/gateway/opcodes/RequestGuildMembers.ts index 7822813..159bcd6 100644 --- a/src/gateway/opcodes/RequestGuildMembers.ts +++ b/src/gateway/opcodes/RequestGuildMembers.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/Resume.ts b/src/gateway/opcodes/Resume.ts index a8650cc..b50d785 100644 --- a/src/gateway/opcodes/Resume.ts +++ b/src/gateway/opcodes/Resume.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/VoiceStateUpdate.ts b/src/gateway/opcodes/VoiceStateUpdate.ts index d300d7b..93c2278 100644 --- a/src/gateway/opcodes/VoiceStateUpdate.ts +++ b/src/gateway/opcodes/VoiceStateUpdate.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/index.ts b/src/gateway/opcodes/index.ts index 1e32f1e..96d609a 100644 --- a/src/gateway/opcodes/index.ts +++ b/src/gateway/opcodes/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/opcodes/instanceOf.ts b/src/gateway/opcodes/instanceOf.ts index 6c23cb0..c367e23 100644 --- a/src/gateway/opcodes/instanceOf.ts +++ b/src/gateway/opcodes/instanceOf.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/start.ts b/src/gateway/start.ts index 79448f9..5132232 100644 --- a/src/gateway/start.ts +++ b/src/gateway/start.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/util/Constants.ts b/src/gateway/util/Constants.ts index cb60005..8600340 100644 --- a/src/gateway/util/Constants.ts +++ b/src/gateway/util/Constants.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/util/Heartbeat.ts b/src/gateway/util/Heartbeat.ts index 2d04b43..d2397d9 100644 --- a/src/gateway/util/Heartbeat.ts +++ b/src/gateway/util/Heartbeat.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/util/Send.ts b/src/gateway/util/Send.ts index e39554a..e67d301 100644 --- a/src/gateway/util/Send.ts +++ b/src/gateway/util/Send.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/util/SessionUtils.ts b/src/gateway/util/SessionUtils.ts index 806f4f9..cd6cf9c 100644 --- a/src/gateway/util/SessionUtils.ts +++ b/src/gateway/util/SessionUtils.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/util/WebSocket.ts b/src/gateway/util/WebSocket.ts index 14917f2..617e1d9 100644 --- a/src/gateway/util/WebSocket.ts +++ b/src/gateway/util/WebSocket.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/gateway/util/index.ts b/src/gateway/util/index.ts index c44a7d1..f04be4b 100644 --- a/src/gateway/util/index.ts +++ b/src/gateway/util/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/Config.ts b/src/util/config/Config.ts index f130e76..280e05d 100644 --- a/src/util/config/Config.ts +++ b/src/util/config/Config.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/index.ts b/src/util/config/index.ts index 18a2fd2..5bfc9d9 100644 --- a/src/util/config/index.ts +++ b/src/util/config/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/ApiConfiguration.ts b/src/util/config/types/ApiConfiguration.ts index 0389ed3..ebfc303 100644 --- a/src/util/config/types/ApiConfiguration.ts +++ b/src/util/config/types/ApiConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/CdnConfiguration.ts b/src/util/config/types/CdnConfiguration.ts index e547b9a..72898dd 100644 --- a/src/util/config/types/CdnConfiguration.ts +++ b/src/util/config/types/CdnConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/DefaultsConfiguration.ts b/src/util/config/types/DefaultsConfiguration.ts index 5561e7d..60174c8 100644 --- a/src/util/config/types/DefaultsConfiguration.ts +++ b/src/util/config/types/DefaultsConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/EmailConfiguration.ts b/src/util/config/types/EmailConfiguration.ts index 989d59e..1f28835 100644 --- a/src/util/config/types/EmailConfiguration.ts +++ b/src/util/config/types/EmailConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/EndpointConfiguration.ts b/src/util/config/types/EndpointConfiguration.ts index e7afe49..cae6ca4 100644 --- a/src/util/config/types/EndpointConfiguration.ts +++ b/src/util/config/types/EndpointConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/ExternalTokensConfiguration.ts b/src/util/config/types/ExternalTokensConfiguration.ts index 7fb6c1a..a04c489 100644 --- a/src/util/config/types/ExternalTokensConfiguration.ts +++ b/src/util/config/types/ExternalTokensConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/GeneralConfiguration.ts b/src/util/config/types/GeneralConfiguration.ts index ba7503b..5a067a7 100644 --- a/src/util/config/types/GeneralConfiguration.ts +++ b/src/util/config/types/GeneralConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/GifConfiguration.ts b/src/util/config/types/GifConfiguration.ts index 0e5583f..bd573be 100644 --- a/src/util/config/types/GifConfiguration.ts +++ b/src/util/config/types/GifConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/GuildConfiguration.ts b/src/util/config/types/GuildConfiguration.ts index addff70..cad0841 100644 --- a/src/util/config/types/GuildConfiguration.ts +++ b/src/util/config/types/GuildConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/KafkaConfiguration.ts b/src/util/config/types/KafkaConfiguration.ts index dd1aae8..9975082 100644 --- a/src/util/config/types/KafkaConfiguration.ts +++ b/src/util/config/types/KafkaConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/LimitConfigurations.ts b/src/util/config/types/LimitConfigurations.ts index 6e2e2d5..6e4d8cb 100644 --- a/src/util/config/types/LimitConfigurations.ts +++ b/src/util/config/types/LimitConfigurations.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/LoginConfiguration.ts b/src/util/config/types/LoginConfiguration.ts index 1d5752f..a146451 100644 --- a/src/util/config/types/LoginConfiguration.ts +++ b/src/util/config/types/LoginConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/MetricsConfiguration.ts b/src/util/config/types/MetricsConfiguration.ts index 184014b..36235e5 100644 --- a/src/util/config/types/MetricsConfiguration.ts +++ b/src/util/config/types/MetricsConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/PasswordResetConfiguration.ts b/src/util/config/types/PasswordResetConfiguration.ts index 806d77b..ee0e10a 100644 --- a/src/util/config/types/PasswordResetConfiguration.ts +++ b/src/util/config/types/PasswordResetConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/RabbitMQConfiguration.ts b/src/util/config/types/RabbitMQConfiguration.ts index 28e76bf..a25d6ac 100644 --- a/src/util/config/types/RabbitMQConfiguration.ts +++ b/src/util/config/types/RabbitMQConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/RegionConfiguration.ts b/src/util/config/types/RegionConfiguration.ts index 039f19b..bddc98b 100644 --- a/src/util/config/types/RegionConfiguration.ts +++ b/src/util/config/types/RegionConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/RegisterConfiguration.ts b/src/util/config/types/RegisterConfiguration.ts index b8db007..aa66ebb 100644 --- a/src/util/config/types/RegisterConfiguration.ts +++ b/src/util/config/types/RegisterConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/SecurityConfiguration.ts b/src/util/config/types/SecurityConfiguration.ts index 7ae311e..a7fa34d 100644 --- a/src/util/config/types/SecurityConfiguration.ts +++ b/src/util/config/types/SecurityConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/SentryConfiguration.ts b/src/util/config/types/SentryConfiguration.ts index ea88990..98daf09 100644 --- a/src/util/config/types/SentryConfiguration.ts +++ b/src/util/config/types/SentryConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/TemplateConfiguration.ts b/src/util/config/types/TemplateConfiguration.ts index 9c6d6bc..59efb91 100644 --- a/src/util/config/types/TemplateConfiguration.ts +++ b/src/util/config/types/TemplateConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/index.ts b/src/util/config/types/index.ts index cd3335e..f435c56 100644 --- a/src/util/config/types/index.ts +++ b/src/util/config/types/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts b/src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts index 797ef4e..f6ae1fc 100644 --- a/src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts +++ b/src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/client/index.ts b/src/util/config/types/subconfigurations/client/index.ts index 7c01e50..9caf84e 100644 --- a/src/util/config/types/subconfigurations/client/index.ts +++ b/src/util/config/types/subconfigurations/client/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/defaults/GuildDefaults.ts b/src/util/config/types/subconfigurations/defaults/GuildDefaults.ts index 89d5152..6148c09 100644 --- a/src/util/config/types/subconfigurations/defaults/GuildDefaults.ts +++ b/src/util/config/types/subconfigurations/defaults/GuildDefaults.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/defaults/UserDefaults.ts b/src/util/config/types/subconfigurations/defaults/UserDefaults.ts index cc23b67..38e2ecc 100644 --- a/src/util/config/types/subconfigurations/defaults/UserDefaults.ts +++ b/src/util/config/types/subconfigurations/defaults/UserDefaults.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/defaults/index.ts b/src/util/config/types/subconfigurations/defaults/index.ts index 85fcb70..6e927d8 100644 --- a/src/util/config/types/subconfigurations/defaults/index.ts +++ b/src/util/config/types/subconfigurations/defaults/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/email/MailGun.ts b/src/util/config/types/subconfigurations/email/MailGun.ts index 52cd906..3fc46ad 100644 --- a/src/util/config/types/subconfigurations/email/MailGun.ts +++ b/src/util/config/types/subconfigurations/email/MailGun.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/email/MailJet.ts b/src/util/config/types/subconfigurations/email/MailJet.ts index eccda8a..e9a8f90 100644 --- a/src/util/config/types/subconfigurations/email/MailJet.ts +++ b/src/util/config/types/subconfigurations/email/MailJet.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/email/SMTP.ts b/src/util/config/types/subconfigurations/email/SMTP.ts index 11eb9e1..9f2b5fd 100644 --- a/src/util/config/types/subconfigurations/email/SMTP.ts +++ b/src/util/config/types/subconfigurations/email/SMTP.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/email/SendGrid.ts b/src/util/config/types/subconfigurations/email/SendGrid.ts index a4755df..1b61023 100644 --- a/src/util/config/types/subconfigurations/email/SendGrid.ts +++ b/src/util/config/types/subconfigurations/email/SendGrid.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/email/index.ts b/src/util/config/types/subconfigurations/email/index.ts index 02cc564..2ffa3d8 100644 --- a/src/util/config/types/subconfigurations/email/index.ts +++ b/src/util/config/types/subconfigurations/email/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/guild/AutoJoin.ts b/src/util/config/types/subconfigurations/guild/AutoJoin.ts index aabead6..e4267dd 100644 --- a/src/util/config/types/subconfigurations/guild/AutoJoin.ts +++ b/src/util/config/types/subconfigurations/guild/AutoJoin.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/guild/Discovery.ts b/src/util/config/types/subconfigurations/guild/Discovery.ts index 25a0cb4..00d5395 100644 --- a/src/util/config/types/subconfigurations/guild/Discovery.ts +++ b/src/util/config/types/subconfigurations/guild/Discovery.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/guild/index.ts b/src/util/config/types/subconfigurations/guild/index.ts index 8aae00b..b386342 100644 --- a/src/util/config/types/subconfigurations/guild/index.ts +++ b/src/util/config/types/subconfigurations/guild/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/index.ts b/src/util/config/types/subconfigurations/index.ts index b3737da..b20cef0 100644 --- a/src/util/config/types/subconfigurations/index.ts +++ b/src/util/config/types/subconfigurations/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/kafka/KafkaBroker.ts b/src/util/config/types/subconfigurations/kafka/KafkaBroker.ts index cfcfbaa..3dc0a91 100644 --- a/src/util/config/types/subconfigurations/kafka/KafkaBroker.ts +++ b/src/util/config/types/subconfigurations/kafka/KafkaBroker.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/kafka/index.ts b/src/util/config/types/subconfigurations/kafka/index.ts index dcc66cd..5cdee39 100644 --- a/src/util/config/types/subconfigurations/kafka/index.ts +++ b/src/util/config/types/subconfigurations/kafka/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/ChannelLimits.ts b/src/util/config/types/subconfigurations/limits/ChannelLimits.ts index c45cec8..c588016 100644 --- a/src/util/config/types/subconfigurations/limits/ChannelLimits.ts +++ b/src/util/config/types/subconfigurations/limits/ChannelLimits.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts b/src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts index a5766ae..1325b8b 100644 --- a/src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts +++ b/src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/GuildLimits.ts b/src/util/config/types/subconfigurations/limits/GuildLimits.ts index 3019ecc..ac0a53b 100644 --- a/src/util/config/types/subconfigurations/limits/GuildLimits.ts +++ b/src/util/config/types/subconfigurations/limits/GuildLimits.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/MessageLimits.ts b/src/util/config/types/subconfigurations/limits/MessageLimits.ts index bb416f3..0f51f5c 100644 --- a/src/util/config/types/subconfigurations/limits/MessageLimits.ts +++ b/src/util/config/types/subconfigurations/limits/MessageLimits.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/RateLimits.ts b/src/util/config/types/subconfigurations/limits/RateLimits.ts index b9539ee..cd05a75 100644 --- a/src/util/config/types/subconfigurations/limits/RateLimits.ts +++ b/src/util/config/types/subconfigurations/limits/RateLimits.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/UserLimits.ts b/src/util/config/types/subconfigurations/limits/UserLimits.ts index 836f714..3e7d087 100644 --- a/src/util/config/types/subconfigurations/limits/UserLimits.ts +++ b/src/util/config/types/subconfigurations/limits/UserLimits.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/index.ts b/src/util/config/types/subconfigurations/limits/index.ts index c5520a8..56946c0 100644 --- a/src/util/config/types/subconfigurations/limits/index.ts +++ b/src/util/config/types/subconfigurations/limits/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts b/src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts index ffe89e9..b3288ef 100644 --- a/src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts +++ b/src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts b/src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts index 531da77..380c981 100644 --- a/src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts +++ b/src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/ratelimits/Route.ts b/src/util/config/types/subconfigurations/limits/ratelimits/Route.ts index 02799be..68c2afc 100644 --- a/src/util/config/types/subconfigurations/limits/ratelimits/Route.ts +++ b/src/util/config/types/subconfigurations/limits/ratelimits/Route.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/limits/ratelimits/index.ts b/src/util/config/types/subconfigurations/limits/ratelimits/index.ts index 312348a..6a85eac 100644 --- a/src/util/config/types/subconfigurations/limits/ratelimits/index.ts +++ b/src/util/config/types/subconfigurations/limits/ratelimits/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/region/Region.ts b/src/util/config/types/subconfigurations/region/Region.ts index 8442833..9c4701c 100644 --- a/src/util/config/types/subconfigurations/region/Region.ts +++ b/src/util/config/types/subconfigurations/region/Region.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/region/index.ts b/src/util/config/types/subconfigurations/region/index.ts index d9a09d4..65ac67d 100644 --- a/src/util/config/types/subconfigurations/region/index.ts +++ b/src/util/config/types/subconfigurations/region/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/register/DateOfBirth.ts b/src/util/config/types/subconfigurations/register/DateOfBirth.ts index debe8c4..d0182e8 100644 --- a/src/util/config/types/subconfigurations/register/DateOfBirth.ts +++ b/src/util/config/types/subconfigurations/register/DateOfBirth.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/register/Email.ts b/src/util/config/types/subconfigurations/register/Email.ts index 4f95caf..01b3243 100644 --- a/src/util/config/types/subconfigurations/register/Email.ts +++ b/src/util/config/types/subconfigurations/register/Email.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/register/Password.ts b/src/util/config/types/subconfigurations/register/Password.ts index ca04e9e..14fc88e 100644 --- a/src/util/config/types/subconfigurations/register/Password.ts +++ b/src/util/config/types/subconfigurations/register/Password.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/register/index.ts b/src/util/config/types/subconfigurations/register/index.ts index 8be613b..1289664 100644 --- a/src/util/config/types/subconfigurations/register/index.ts +++ b/src/util/config/types/subconfigurations/register/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/security/Captcha.ts b/src/util/config/types/subconfigurations/security/Captcha.ts index cf61989..e903dd6 100644 --- a/src/util/config/types/subconfigurations/security/Captcha.ts +++ b/src/util/config/types/subconfigurations/security/Captcha.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/security/TwoFactor.ts b/src/util/config/types/subconfigurations/security/TwoFactor.ts index 70f61cb..f03902d 100644 --- a/src/util/config/types/subconfigurations/security/TwoFactor.ts +++ b/src/util/config/types/subconfigurations/security/TwoFactor.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/config/types/subconfigurations/security/index.ts b/src/util/config/types/subconfigurations/security/index.ts index 9dc9aca..b852315 100644 --- a/src/util/config/types/subconfigurations/security/index.ts +++ b/src/util/config/types/subconfigurations/security/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/dtos/DmChannelDTO.ts b/src/util/dtos/DmChannelDTO.ts index 02f7e8f..fe936f5 100644 --- a/src/util/dtos/DmChannelDTO.ts +++ b/src/util/dtos/DmChannelDTO.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/dtos/ReadyGuildDTO.ts b/src/util/dtos/ReadyGuildDTO.ts index 97e6931..9f8435e 100644 --- a/src/util/dtos/ReadyGuildDTO.ts +++ b/src/util/dtos/ReadyGuildDTO.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/dtos/UserDTO.ts b/src/util/dtos/UserDTO.ts index 3cbeb6e..ce490bd 100644 --- a/src/util/dtos/UserDTO.ts +++ b/src/util/dtos/UserDTO.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/dtos/index.ts b/src/util/dtos/index.ts index cf3863f..afb3fdb 100644 --- a/src/util/dtos/index.ts +++ b/src/util/dtos/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Application.ts b/src/util/entities/Application.ts index 9470932..37491a5 100644 --- a/src/util/entities/Application.ts +++ b/src/util/entities/Application.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Attachment.ts b/src/util/entities/Attachment.ts index fdc1b3f..d9e61a9 100644 --- a/src/util/entities/Attachment.ts +++ b/src/util/entities/Attachment.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/AuditLog.ts b/src/util/entities/AuditLog.ts index 0cc2fc0..a7dfcc5 100644 --- a/src/util/entities/AuditLog.ts +++ b/src/util/entities/AuditLog.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/BackupCodes.ts b/src/util/entities/BackupCodes.ts index 467e1fe..b9914a8 100644 --- a/src/util/entities/BackupCodes.ts +++ b/src/util/entities/BackupCodes.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Ban.ts b/src/util/entities/Ban.ts index 4ed6e20..f9f51e0 100644 --- a/src/util/entities/Ban.ts +++ b/src/util/entities/Ban.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/BaseClass.ts b/src/util/entities/BaseClass.ts index 445b3fc..e60f405 100644 --- a/src/util/entities/BaseClass.ts +++ b/src/util/entities/BaseClass.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Categories.ts b/src/util/entities/Categories.ts index 198348b..44971d0 100644 --- a/src/util/entities/Categories.ts +++ b/src/util/entities/Categories.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Channel.ts b/src/util/entities/Channel.ts index 1f12871..7339d70 100644 --- a/src/util/entities/Channel.ts +++ b/src/util/entities/Channel.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/ClientRelease.ts b/src/util/entities/ClientRelease.ts index 4b8150f..947221b 100644 --- a/src/util/entities/ClientRelease.ts +++ b/src/util/entities/ClientRelease.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Config.ts b/src/util/entities/Config.ts index 4449b6e..0c8b6f6 100644 --- a/src/util/entities/Config.ts +++ b/src/util/entities/Config.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/ConnectedAccount.ts b/src/util/entities/ConnectedAccount.ts index 9f0ce35..29befa0 100644 --- a/src/util/entities/ConnectedAccount.ts +++ b/src/util/entities/ConnectedAccount.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/EmbedCache.ts b/src/util/entities/EmbedCache.ts index 800ee4e..41b1b63 100644 --- a/src/util/entities/EmbedCache.ts +++ b/src/util/entities/EmbedCache.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Emoji.ts b/src/util/entities/Emoji.ts index 94ce3d5..3458302 100644 --- a/src/util/entities/Emoji.ts +++ b/src/util/entities/Emoji.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Encryption.ts b/src/util/entities/Encryption.ts index 016b433..ff868c4 100644 --- a/src/util/entities/Encryption.ts +++ b/src/util/entities/Encryption.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Guild.ts b/src/util/entities/Guild.ts index c835f5f..daa2650 100644 --- a/src/util/entities/Guild.ts +++ b/src/util/entities/Guild.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Invite.ts b/src/util/entities/Invite.ts index b29dfcf..f517bb4 100644 --- a/src/util/entities/Invite.ts +++ b/src/util/entities/Invite.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Member.ts b/src/util/entities/Member.ts index c097c1f..e3f9a3c 100644 --- a/src/util/entities/Member.ts +++ b/src/util/entities/Member.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Message.ts b/src/util/entities/Message.ts index fc8c011..42c29ce 100644 --- a/src/util/entities/Message.ts +++ b/src/util/entities/Message.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Migration.ts b/src/util/entities/Migration.ts index 57097d8..2ddc4df 100644 --- a/src/util/entities/Migration.ts +++ b/src/util/entities/Migration.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Note.ts b/src/util/entities/Note.ts index 0f2a5ce..74e2e87 100644 --- a/src/util/entities/Note.ts +++ b/src/util/entities/Note.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/RateLimit.ts b/src/util/entities/RateLimit.ts index 79ebbb0..ffb5a05 100644 --- a/src/util/entities/RateLimit.ts +++ b/src/util/entities/RateLimit.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/ReadState.ts b/src/util/entities/ReadState.ts index 825beb0..b40cde0 100644 --- a/src/util/entities/ReadState.ts +++ b/src/util/entities/ReadState.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Recipient.ts b/src/util/entities/Recipient.ts index 1cf028d..1156703 100644 --- a/src/util/entities/Recipient.ts +++ b/src/util/entities/Recipient.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Relationship.ts b/src/util/entities/Relationship.ts index 1bf04c2..2ce16b9 100644 --- a/src/util/entities/Relationship.ts +++ b/src/util/entities/Relationship.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Role.ts b/src/util/entities/Role.ts index d3275ed..93a0e15 100644 --- a/src/util/entities/Role.ts +++ b/src/util/entities/Role.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/SecurityKey.ts b/src/util/entities/SecurityKey.ts index 8f377d9..c918626 100644 --- a/src/util/entities/SecurityKey.ts +++ b/src/util/entities/SecurityKey.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Session.ts b/src/util/entities/Session.ts index f416b9f..5a54c09 100644 --- a/src/util/entities/Session.ts +++ b/src/util/entities/Session.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Sticker.ts b/src/util/entities/Sticker.ts index 513a4c9..3af4056 100644 --- a/src/util/entities/Sticker.ts +++ b/src/util/entities/Sticker.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/StickerPack.ts b/src/util/entities/StickerPack.ts index ce8d5e8..911ef4b 100644 --- a/src/util/entities/StickerPack.ts +++ b/src/util/entities/StickerPack.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Team.ts b/src/util/entities/Team.ts index 8285940..e494762 100644 --- a/src/util/entities/Team.ts +++ b/src/util/entities/Team.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/TeamMember.ts b/src/util/entities/TeamMember.ts index df70050..cd815e9 100644 --- a/src/util/entities/TeamMember.ts +++ b/src/util/entities/TeamMember.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Template.ts b/src/util/entities/Template.ts index 17f26e1..11eb4d5 100644 --- a/src/util/entities/Template.ts +++ b/src/util/entities/Template.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/User.ts b/src/util/entities/User.ts index 8dfb025..3a77e5d 100644 --- a/src/util/entities/User.ts +++ b/src/util/entities/User.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/UserSettings.ts b/src/util/entities/UserSettings.ts index 4c27359..5cd63db 100644 --- a/src/util/entities/UserSettings.ts +++ b/src/util/entities/UserSettings.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/ValidRegistrationTokens.ts b/src/util/entities/ValidRegistrationTokens.ts index ece6d00..94e1dac 100644 --- a/src/util/entities/ValidRegistrationTokens.ts +++ b/src/util/entities/ValidRegistrationTokens.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/VoiceState.ts b/src/util/entities/VoiceState.ts index f790945..37c92d6 100644 --- a/src/util/entities/VoiceState.ts +++ b/src/util/entities/VoiceState.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/Webhook.ts b/src/util/entities/Webhook.ts index 9be86c6..1a18c0a 100644 --- a/src/util/entities/Webhook.ts +++ b/src/util/entities/Webhook.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/entities/index.ts b/src/util/entities/index.ts index 6dfbd82..609b8fb 100644 --- a/src/util/entities/index.ts +++ b/src/util/entities/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/imports/index.ts b/src/util/imports/index.ts index da0be37..dd84289 100644 --- a/src/util/imports/index.ts +++ b/src/util/imports/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/index.ts b/src/util/index.ts index a3495a0..939dcbf 100644 --- a/src/util/index.ts +++ b/src/util/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/interfaces/Activity.ts b/src/util/interfaces/Activity.ts index 7398fc6..65adfa2 100644 --- a/src/util/interfaces/Activity.ts +++ b/src/util/interfaces/Activity.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/interfaces/Event.ts b/src/util/interfaces/Event.ts index c3bfbf9..e99bd72 100644 --- a/src/util/interfaces/Event.ts +++ b/src/util/interfaces/Event.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/interfaces/Interaction.ts b/src/util/interfaces/Interaction.ts index 4158eda..f26f85b 100644 --- a/src/util/interfaces/Interaction.ts +++ b/src/util/interfaces/Interaction.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/interfaces/Presence.ts b/src/util/interfaces/Presence.ts index 4526060..6821a54 100644 --- a/src/util/interfaces/Presence.ts +++ b/src/util/interfaces/Presence.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/interfaces/Status.ts b/src/util/interfaces/Status.ts index 714c623..0bcc1de 100644 --- a/src/util/interfaces/Status.ts +++ b/src/util/interfaces/Status.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/interfaces/index.ts b/src/util/interfaces/index.ts index fa259ce..4758921 100644 --- a/src/util/interfaces/index.ts +++ b/src/util/interfaces/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts b/src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts index d34e08b..4d5aae6 100644 --- a/src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts +++ b/src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/migration/mariadb/1675045120206-webauthn.ts b/src/util/migration/mariadb/1675045120206-webauthn.ts index 5cd74f4..03ae022 100644 --- a/src/util/migration/mariadb/1675045120206-webauthn.ts +++ b/src/util/migration/mariadb/1675045120206-webauthn.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/migration/mysql/1673609465036-templateDeleteCascade.ts b/src/util/migration/mysql/1673609465036-templateDeleteCascade.ts index d34e08b..4d5aae6 100644 --- a/src/util/migration/mysql/1673609465036-templateDeleteCascade.ts +++ b/src/util/migration/mysql/1673609465036-templateDeleteCascade.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/migration/mysql/1675045120206-webauthn.ts b/src/util/migration/mysql/1675045120206-webauthn.ts index 5cd74f4..03ae022 100644 --- a/src/util/migration/mysql/1675045120206-webauthn.ts +++ b/src/util/migration/mysql/1675045120206-webauthn.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/migration/postgres/1673609867556-templateDeleteCascade.ts b/src/util/migration/postgres/1673609867556-templateDeleteCascade.ts index 41979e5..1a049b7 100644 --- a/src/util/migration/postgres/1673609867556-templateDeleteCascade.ts +++ b/src/util/migration/postgres/1673609867556-templateDeleteCascade.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/migration/postgres/1675044825710-webauthn.ts b/src/util/migration/postgres/1675044825710-webauthn.ts index 7fc3c2f..2e76bbb 100644 --- a/src/util/migration/postgres/1675044825710-webauthn.ts +++ b/src/util/migration/postgres/1675044825710-webauthn.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/AckBulkSchema.ts b/src/util/schemas/AckBulkSchema.ts index ad687fd..a089507 100644 --- a/src/util/schemas/AckBulkSchema.ts +++ b/src/util/schemas/AckBulkSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ActivitySchema.ts b/src/util/schemas/ActivitySchema.ts index 2e27fc7..2bafb1c 100644 --- a/src/util/schemas/ActivitySchema.ts +++ b/src/util/schemas/ActivitySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ApplicationAuthorizeSchema.ts b/src/util/schemas/ApplicationAuthorizeSchema.ts index 730f212..1220160 100644 --- a/src/util/schemas/ApplicationAuthorizeSchema.ts +++ b/src/util/schemas/ApplicationAuthorizeSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ApplicationCreateSchema.ts b/src/util/schemas/ApplicationCreateSchema.ts index 50a40bf..214149c 100644 --- a/src/util/schemas/ApplicationCreateSchema.ts +++ b/src/util/schemas/ApplicationCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ApplicationModifySchema.ts b/src/util/schemas/ApplicationModifySchema.ts index ab470f5..85fd36a 100644 --- a/src/util/schemas/ApplicationModifySchema.ts +++ b/src/util/schemas/ApplicationModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/BackupCodesChallengeSchema.ts b/src/util/schemas/BackupCodesChallengeSchema.ts index 5961669..4994c98 100644 --- a/src/util/schemas/BackupCodesChallengeSchema.ts +++ b/src/util/schemas/BackupCodesChallengeSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/BanCreateSchema.ts b/src/util/schemas/BanCreateSchema.ts index fdbf982..2673c59 100644 --- a/src/util/schemas/BanCreateSchema.ts +++ b/src/util/schemas/BanCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/BanModeratorSchema.ts b/src/util/schemas/BanModeratorSchema.ts index 8d4426d..d097777 100644 --- a/src/util/schemas/BanModeratorSchema.ts +++ b/src/util/schemas/BanModeratorSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/BanRegistrySchema.ts b/src/util/schemas/BanRegistrySchema.ts index 0415e65..956b864 100644 --- a/src/util/schemas/BanRegistrySchema.ts +++ b/src/util/schemas/BanRegistrySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/BotModifySchema.ts b/src/util/schemas/BotModifySchema.ts index 1d96bcc..511e51d 100644 --- a/src/util/schemas/BotModifySchema.ts +++ b/src/util/schemas/BotModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/BulkDeleteSchema.ts b/src/util/schemas/BulkDeleteSchema.ts index da53a63..05e7bb3 100644 --- a/src/util/schemas/BulkDeleteSchema.ts +++ b/src/util/schemas/BulkDeleteSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ChannelModifySchema.ts b/src/util/schemas/ChannelModifySchema.ts index 1bf8410..47f5543 100644 --- a/src/util/schemas/ChannelModifySchema.ts +++ b/src/util/schemas/ChannelModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ChannelPermissionOverwriteSchema.ts b/src/util/schemas/ChannelPermissionOverwriteSchema.ts index 62d0ad1..d85dbe4 100644 --- a/src/util/schemas/ChannelPermissionOverwriteSchema.ts +++ b/src/util/schemas/ChannelPermissionOverwriteSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ChannelReorderSchema.ts b/src/util/schemas/ChannelReorderSchema.ts index f579ae6..6af5810 100644 --- a/src/util/schemas/ChannelReorderSchema.ts +++ b/src/util/schemas/ChannelReorderSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/CodesVerificationSchema.ts b/src/util/schemas/CodesVerificationSchema.ts index 5bbc071..1028cb2 100644 --- a/src/util/schemas/CodesVerificationSchema.ts +++ b/src/util/schemas/CodesVerificationSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/DmChannelCreateSchema.ts b/src/util/schemas/DmChannelCreateSchema.ts index 2078ac3..afcc7fe 100644 --- a/src/util/schemas/DmChannelCreateSchema.ts +++ b/src/util/schemas/DmChannelCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/EmojiCreateSchema.ts b/src/util/schemas/EmojiCreateSchema.ts index 645c0ab..295a70f 100644 --- a/src/util/schemas/EmojiCreateSchema.ts +++ b/src/util/schemas/EmojiCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/EmojiModifySchema.ts b/src/util/schemas/EmojiModifySchema.ts index c613270..5b219b1 100644 --- a/src/util/schemas/EmojiModifySchema.ts +++ b/src/util/schemas/EmojiModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ForgotPasswordSchema.ts b/src/util/schemas/ForgotPasswordSchema.ts index 9a28bd1..b9d7454 100644 --- a/src/util/schemas/ForgotPasswordSchema.ts +++ b/src/util/schemas/ForgotPasswordSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/GatewayBotResponse.ts b/src/util/schemas/GatewayBotResponse.ts index 30f1f57..1191516 100644 --- a/src/util/schemas/GatewayBotResponse.ts +++ b/src/util/schemas/GatewayBotResponse.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + export interface GatewayBotResponse { url: string; shards: number; diff --git a/src/util/schemas/GatewayPayloadSchema.ts b/src/util/schemas/GatewayPayloadSchema.ts index 5eb3405..9d7151a 100644 --- a/src/util/schemas/GatewayPayloadSchema.ts +++ b/src/util/schemas/GatewayPayloadSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/GatewayResponse.ts b/src/util/schemas/GatewayResponse.ts index e909f7b..4d2d06b 100644 --- a/src/util/schemas/GatewayResponse.ts +++ b/src/util/schemas/GatewayResponse.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + export interface GatewayResponse { url: string; } diff --git a/src/util/schemas/GuildCreateSchema.ts b/src/util/schemas/GuildCreateSchema.ts index 6151924..8f423ce 100644 --- a/src/util/schemas/GuildCreateSchema.ts +++ b/src/util/schemas/GuildCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/GuildTemplateCreateSchema.ts b/src/util/schemas/GuildTemplateCreateSchema.ts index 2ea96ea..94fb071 100644 --- a/src/util/schemas/GuildTemplateCreateSchema.ts +++ b/src/util/schemas/GuildTemplateCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/GuildUpdateSchema.ts b/src/util/schemas/GuildUpdateSchema.ts index b9c923b..d857dfa 100644 --- a/src/util/schemas/GuildUpdateSchema.ts +++ b/src/util/schemas/GuildUpdateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts b/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts index e930fd0..e073f6f 100644 --- a/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts +++ b/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/IdentifySchema.ts b/src/util/schemas/IdentifySchema.ts index 9bb14ca..a8a541a 100644 --- a/src/util/schemas/IdentifySchema.ts +++ b/src/util/schemas/IdentifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/InviteCreateSchema.ts b/src/util/schemas/InviteCreateSchema.ts index bb0955c..8d6a92c 100644 --- a/src/util/schemas/InviteCreateSchema.ts +++ b/src/util/schemas/InviteCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/LazyRequestSchema.ts b/src/util/schemas/LazyRequestSchema.ts index 9d25eb3..f37e219 100644 --- a/src/util/schemas/LazyRequestSchema.ts +++ b/src/util/schemas/LazyRequestSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/LoginSchema.ts b/src/util/schemas/LoginSchema.ts index 872c8db..b77268b 100644 --- a/src/util/schemas/LoginSchema.ts +++ b/src/util/schemas/LoginSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/MemberChangeProfileSchema.ts b/src/util/schemas/MemberChangeProfileSchema.ts index f9f7f72..c652ac5 100644 --- a/src/util/schemas/MemberChangeProfileSchema.ts +++ b/src/util/schemas/MemberChangeProfileSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/MemberChangeSchema.ts b/src/util/schemas/MemberChangeSchema.ts index 6d028d8..328eda1 100644 --- a/src/util/schemas/MemberChangeSchema.ts +++ b/src/util/schemas/MemberChangeSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/MemberNickChangeSchema.ts b/src/util/schemas/MemberNickChangeSchema.ts index daefb32..d7f0b35 100644 --- a/src/util/schemas/MemberNickChangeSchema.ts +++ b/src/util/schemas/MemberNickChangeSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/MessageAcknowledgeSchema.ts b/src/util/schemas/MessageAcknowledgeSchema.ts index c63d529..89701ff 100644 --- a/src/util/schemas/MessageAcknowledgeSchema.ts +++ b/src/util/schemas/MessageAcknowledgeSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/MessageCreateSchema.ts b/src/util/schemas/MessageCreateSchema.ts index 4ee6e73..d10773e 100644 --- a/src/util/schemas/MessageCreateSchema.ts +++ b/src/util/schemas/MessageCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/MessageEditSchema.ts b/src/util/schemas/MessageEditSchema.ts index 6f24140..11dabdc 100644 --- a/src/util/schemas/MessageEditSchema.ts +++ b/src/util/schemas/MessageEditSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/MfaCodesSchema.ts b/src/util/schemas/MfaCodesSchema.ts index eb08847..82ba8c2 100644 --- a/src/util/schemas/MfaCodesSchema.ts +++ b/src/util/schemas/MfaCodesSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/ModifyGuildStickerSchema.ts b/src/util/schemas/ModifyGuildStickerSchema.ts index 1c558b2..1127a53 100644 --- a/src/util/schemas/ModifyGuildStickerSchema.ts +++ b/src/util/schemas/ModifyGuildStickerSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/PasswordResetSchema.ts b/src/util/schemas/PasswordResetSchema.ts index 9cc7494..c586cbc 100644 --- a/src/util/schemas/PasswordResetSchema.ts +++ b/src/util/schemas/PasswordResetSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/PruneSchema.ts b/src/util/schemas/PruneSchema.ts index 531213f..928f84e 100644 --- a/src/util/schemas/PruneSchema.ts +++ b/src/util/schemas/PruneSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/PurgeSchema.ts b/src/util/schemas/PurgeSchema.ts index d83251c..1495c0d 100644 --- a/src/util/schemas/PurgeSchema.ts +++ b/src/util/schemas/PurgeSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/RegisterSchema.ts b/src/util/schemas/RegisterSchema.ts index 0c8fb92..4e41be2 100644 --- a/src/util/schemas/RegisterSchema.ts +++ b/src/util/schemas/RegisterSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/RelationshipPostSchema.ts b/src/util/schemas/RelationshipPostSchema.ts index 1ce27ca..eb4e036 100644 --- a/src/util/schemas/RelationshipPostSchema.ts +++ b/src/util/schemas/RelationshipPostSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/RelationshipPutSchema.ts b/src/util/schemas/RelationshipPutSchema.ts index 1c45e24..38a31b9 100644 --- a/src/util/schemas/RelationshipPutSchema.ts +++ b/src/util/schemas/RelationshipPutSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/RoleModifySchema.ts b/src/util/schemas/RoleModifySchema.ts index 3451863..164a4df 100644 --- a/src/util/schemas/RoleModifySchema.ts +++ b/src/util/schemas/RoleModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/RolePositionUpdateSchema.ts b/src/util/schemas/RolePositionUpdateSchema.ts index 8401e2e..c1f6f5f 100644 --- a/src/util/schemas/RolePositionUpdateSchema.ts +++ b/src/util/schemas/RolePositionUpdateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/SelectProtocolSchema.ts b/src/util/schemas/SelectProtocolSchema.ts index 063462e..cba2541 100644 --- a/src/util/schemas/SelectProtocolSchema.ts +++ b/src/util/schemas/SelectProtocolSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/TemplateCreateSchema.ts b/src/util/schemas/TemplateCreateSchema.ts index 99ce111..2ed1482 100644 --- a/src/util/schemas/TemplateCreateSchema.ts +++ b/src/util/schemas/TemplateCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/TemplateModifySchema.ts b/src/util/schemas/TemplateModifySchema.ts index 34bd40a..ec9a70e 100644 --- a/src/util/schemas/TemplateModifySchema.ts +++ b/src/util/schemas/TemplateModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/TotpDisableSchema.ts b/src/util/schemas/TotpDisableSchema.ts index 004f0bf..db42dfc 100644 --- a/src/util/schemas/TotpDisableSchema.ts +++ b/src/util/schemas/TotpDisableSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/TotpEnableSchema.ts b/src/util/schemas/TotpEnableSchema.ts index b6cdd17..4af4d50 100644 --- a/src/util/schemas/TotpEnableSchema.ts +++ b/src/util/schemas/TotpEnableSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/TotpSchema.ts b/src/util/schemas/TotpSchema.ts index 0ebc6d3..9ee2688 100644 --- a/src/util/schemas/TotpSchema.ts +++ b/src/util/schemas/TotpSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/UserDeleteSchema.ts b/src/util/schemas/UserDeleteSchema.ts index 6e6b15a..cf56a60 100644 --- a/src/util/schemas/UserDeleteSchema.ts +++ b/src/util/schemas/UserDeleteSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/UserGuildSettingsSchema.ts b/src/util/schemas/UserGuildSettingsSchema.ts index 6458c56..91b6826 100644 --- a/src/util/schemas/UserGuildSettingsSchema.ts +++ b/src/util/schemas/UserGuildSettingsSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/UserModifySchema.ts b/src/util/schemas/UserModifySchema.ts index 7851ec2..33be1ec 100644 --- a/src/util/schemas/UserModifySchema.ts +++ b/src/util/schemas/UserModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/UserProfileModifySchema.ts b/src/util/schemas/UserProfileModifySchema.ts index 5239a9a..fbb4f42 100644 --- a/src/util/schemas/UserProfileModifySchema.ts +++ b/src/util/schemas/UserProfileModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/UserProfileResponse.ts b/src/util/schemas/UserProfileResponse.ts index 467d787..c6f3958 100644 --- a/src/util/schemas/UserProfileResponse.ts +++ b/src/util/schemas/UserProfileResponse.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import { PublicConnectedAccount, UserPublic } from ".."; export interface UserProfileResponse { diff --git a/src/util/schemas/UserRelationsResponse.ts b/src/util/schemas/UserRelationsResponse.ts index 1ec15ec..e6392ee 100644 --- a/src/util/schemas/UserRelationsResponse.ts +++ b/src/util/schemas/UserRelationsResponse.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + export interface UserRelationsResponse { object: { id?: string; diff --git a/src/util/schemas/UserSettingsSchema.ts b/src/util/schemas/UserSettingsSchema.ts index f315892..f71cfd7 100644 --- a/src/util/schemas/UserSettingsSchema.ts +++ b/src/util/schemas/UserSettingsSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/Validator.ts b/src/util/schemas/Validator.ts index 3190dd0..a055ad8 100644 --- a/src/util/schemas/Validator.ts +++ b/src/util/schemas/Validator.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/VanityUrlSchema.ts b/src/util/schemas/VanityUrlSchema.ts index 4550208..9d87cd1 100644 --- a/src/util/schemas/VanityUrlSchema.ts +++ b/src/util/schemas/VanityUrlSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/VerifyEmailSchema.ts b/src/util/schemas/VerifyEmailSchema.ts index d94fbbc..84a101b 100644 --- a/src/util/schemas/VerifyEmailSchema.ts +++ b/src/util/schemas/VerifyEmailSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/VoiceIdentifySchema.ts b/src/util/schemas/VoiceIdentifySchema.ts index 8d4b396..732d9ac 100644 --- a/src/util/schemas/VoiceIdentifySchema.ts +++ b/src/util/schemas/VoiceIdentifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/VoiceStateUpdateSchema.ts b/src/util/schemas/VoiceStateUpdateSchema.ts index 467588b..42b668b 100644 --- a/src/util/schemas/VoiceStateUpdateSchema.ts +++ b/src/util/schemas/VoiceStateUpdateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/VoiceVideoSchema.ts b/src/util/schemas/VoiceVideoSchema.ts index a801588..f2839c3 100644 --- a/src/util/schemas/VoiceVideoSchema.ts +++ b/src/util/schemas/VoiceVideoSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/WebAuthnSchema.ts b/src/util/schemas/WebAuthnSchema.ts index 03e173a..a6395db 100644 --- a/src/util/schemas/WebAuthnSchema.ts +++ b/src/util/schemas/WebAuthnSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/WebhookCreateSchema.ts b/src/util/schemas/WebhookCreateSchema.ts index 8089ad6..32b894e 100644 --- a/src/util/schemas/WebhookCreateSchema.ts +++ b/src/util/schemas/WebhookCreateSchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/WidgetModifySchema.ts b/src/util/schemas/WidgetModifySchema.ts index 3ff0d85..ad44e5b 100644 --- a/src/util/schemas/WidgetModifySchema.ts +++ b/src/util/schemas/WidgetModifySchema.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/schemas/index.ts b/src/util/schemas/index.ts index 150a2de..bf8fdb5 100644 --- a/src/util/schemas/index.ts +++ b/src/util/schemas/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/ApiError.ts b/src/util/util/ApiError.ts index dc33e71..714a505 100644 --- a/src/util/util/ApiError.ts +++ b/src/util/util/ApiError.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Array.ts b/src/util/util/Array.ts index dbc75b8..cb8377f 100644 --- a/src/util/util/Array.ts +++ b/src/util/util/Array.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/AutoUpdate.ts b/src/util/util/AutoUpdate.ts index a4a97f3..a4f071d 100644 --- a/src/util/util/AutoUpdate.ts +++ b/src/util/util/AutoUpdate.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Categories.ts b/src/util/util/Categories.ts index 5343739..ebdaef5 100644 --- a/src/util/util/Categories.ts +++ b/src/util/util/Categories.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Config.ts b/src/util/util/Config.ts index bbe2f96..7bb7790 100644 --- a/src/util/util/Config.ts +++ b/src/util/util/Config.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Constants.ts b/src/util/util/Constants.ts index 1afdce4..0ff3350 100644 --- a/src/util/util/Constants.ts +++ b/src/util/util/Constants.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Database.ts b/src/util/util/Database.ts index 64d7ca1..67299fa 100644 --- a/src/util/util/Database.ts +++ b/src/util/util/Database.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Event.ts b/src/util/util/Event.ts index 79be1a1..fd21eab 100644 --- a/src/util/util/Event.ts +++ b/src/util/util/Event.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/FieldError.ts b/src/util/util/FieldError.ts index eff793a..ab0fbbb 100644 --- a/src/util/util/FieldError.ts +++ b/src/util/util/FieldError.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Intents.ts b/src/util/util/Intents.ts index e31f50c..f5de7df 100644 --- a/src/util/util/Intents.ts +++ b/src/util/util/Intents.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/InvisibleCharacters.ts b/src/util/util/InvisibleCharacters.ts index ae4817b..dbe7e9a 100644 --- a/src/util/util/InvisibleCharacters.ts +++ b/src/util/util/InvisibleCharacters.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/JSON.ts b/src/util/util/JSON.ts index b092eb8..a69bbc1 100644 --- a/src/util/util/JSON.ts +++ b/src/util/util/JSON.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + // Discord.com sends ISO strings with +00:00 extension, not Z // This causes issues with Python bot libs const JSONReplacer = function ( diff --git a/src/util/util/RabbitMQ.ts b/src/util/util/RabbitMQ.ts index 30f5ee5..2db6a73 100644 --- a/src/util/util/RabbitMQ.ts +++ b/src/util/util/RabbitMQ.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Regex.ts b/src/util/util/Regex.ts index cf973f4..3b51418 100644 --- a/src/util/util/Regex.ts +++ b/src/util/util/Regex.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Rights.ts b/src/util/util/Rights.ts index 383f07e..6eee4d3 100644 --- a/src/util/util/Rights.ts +++ b/src/util/util/Rights.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Sentry.ts b/src/util/util/Sentry.ts index e124835..727aa9a 100644 --- a/src/util/util/Sentry.ts +++ b/src/util/util/Sentry.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/String.ts b/src/util/util/String.ts index 74fd029..6ffd51b 100644 --- a/src/util/util/String.ts +++ b/src/util/util/String.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/Token.ts b/src/util/util/Token.ts index ffc442a..14b3c86 100644 --- a/src/util/util/Token.ts +++ b/src/util/util/Token.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/TraverseDirectory.ts b/src/util/util/TraverseDirectory.ts index 223e3ee..e02df82 100644 --- a/src/util/util/TraverseDirectory.ts +++ b/src/util/util/TraverseDirectory.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/WebAuthn.ts b/src/util/util/WebAuthn.ts index 1bac5b9..791893c 100644 --- a/src/util/util/WebAuthn.ts +++ b/src/util/util/WebAuthn.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/cdn.ts b/src/util/util/cdn.ts index 69d5015..45cf3fd 100644 --- a/src/util/util/cdn.ts +++ b/src/util/util/cdn.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/email/index.ts b/src/util/util/email/index.ts index b9786e4..8f65f8c 100644 --- a/src/util/util/email/index.ts +++ b/src/util/util/email/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/util/util/email/transports/MailGun.ts b/src/util/util/email/transports/MailGun.ts index 3a5be13..adafa47 100644 --- a/src/util/util/email/transports/MailGun.ts +++ b/src/util/util/email/transports/MailGun.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import { Config } from "@fosscord/util"; import nodemailer from "nodemailer"; diff --git a/src/util/util/email/transports/MailJet.ts b/src/util/util/email/transports/MailJet.ts index 561d13e..b5551d4 100644 --- a/src/util/util/email/transports/MailJet.ts +++ b/src/util/util/email/transports/MailJet.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import { Config } from "@fosscord/util"; import nodemailer from "nodemailer"; diff --git a/src/util/util/email/transports/SMTP.ts b/src/util/util/email/transports/SMTP.ts index 7d8e1e2..7f863ec 100644 --- a/src/util/util/email/transports/SMTP.ts +++ b/src/util/util/email/transports/SMTP.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import { Config } from "@fosscord/util"; import nodemailer from "nodemailer"; diff --git a/src/util/util/email/transports/SendGrid.ts b/src/util/util/email/transports/SendGrid.ts index 7b46c7b..be039dd 100644 --- a/src/util/util/email/transports/SendGrid.ts +++ b/src/util/util/email/transports/SendGrid.ts @@ -1,3 +1,21 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import { Config } from "@fosscord/util"; import nodemailer from "nodemailer"; diff --git a/src/util/util/email/transports/index.ts b/src/util/util/email/transports/index.ts index d14acbf..992de54 100644 --- a/src/util/util/email/transports/index.ts +++ b/src/util/util/email/transports/index.ts @@ -1 +1,19 @@ +/* + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. + Copyright (C) 2023 Fosscord and Fosscord Contributors + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + export * from "./SMTP"; diff --git a/src/util/util/index.ts b/src/util/util/index.ts index 93656ec..f7102ba 100644 --- a/src/util/util/index.ts +++ b/src/util/util/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/Server.ts b/src/webrtc/Server.ts index 850992e..423b626 100644 --- a/src/webrtc/Server.ts +++ b/src/webrtc/Server.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/events/Close.ts b/src/webrtc/events/Close.ts index 4aed4ee..346a5d8 100644 --- a/src/webrtc/events/Close.ts +++ b/src/webrtc/events/Close.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/events/Connection.ts b/src/webrtc/events/Connection.ts index c362c97..fa3bc85 100644 --- a/src/webrtc/events/Connection.ts +++ b/src/webrtc/events/Connection.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/events/Message.ts b/src/webrtc/events/Message.ts index 6b0c1a3..98d4b6c 100644 --- a/src/webrtc/events/Message.ts +++ b/src/webrtc/events/Message.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/index.ts b/src/webrtc/index.ts index ab13c11..25fddee 100644 --- a/src/webrtc/index.ts +++ b/src/webrtc/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/opcodes/BackendVersion.ts b/src/webrtc/opcodes/BackendVersion.ts index ada3786..055764a 100644 --- a/src/webrtc/opcodes/BackendVersion.ts +++ b/src/webrtc/opcodes/BackendVersion.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/opcodes/Heartbeat.ts b/src/webrtc/opcodes/Heartbeat.ts index e7da338..2aaa947 100644 --- a/src/webrtc/opcodes/Heartbeat.ts +++ b/src/webrtc/opcodes/Heartbeat.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/opcodes/Identify.ts b/src/webrtc/opcodes/Identify.ts index 13fa647..99a3033 100644 --- a/src/webrtc/opcodes/Identify.ts +++ b/src/webrtc/opcodes/Identify.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/opcodes/SelectProtocol.ts b/src/webrtc/opcodes/SelectProtocol.ts index cdb5ad9..ea2c5f3 100644 --- a/src/webrtc/opcodes/SelectProtocol.ts +++ b/src/webrtc/opcodes/SelectProtocol.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/opcodes/Speaking.ts b/src/webrtc/opcodes/Speaking.ts index e0d52e0..a6504c9 100644 --- a/src/webrtc/opcodes/Speaking.ts +++ b/src/webrtc/opcodes/Speaking.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/opcodes/Video.ts b/src/webrtc/opcodes/Video.ts index 7c7eec2..4ab39bb 100644 --- a/src/webrtc/opcodes/Video.ts +++ b/src/webrtc/opcodes/Video.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/opcodes/index.ts b/src/webrtc/opcodes/index.ts index b8be13a..d631499 100644 --- a/src/webrtc/opcodes/index.ts +++ b/src/webrtc/opcodes/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/start.ts b/src/webrtc/start.ts index cceb399..cf3c845 100644 --- a/src/webrtc/start.ts +++ b/src/webrtc/start.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/util/Constants.ts b/src/webrtc/util/Constants.ts index fcf806f..be31a18 100644 --- a/src/webrtc/util/Constants.ts +++ b/src/webrtc/util/Constants.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/util/MediaServer.ts b/src/webrtc/util/MediaServer.ts index a8c928b..309652f 100644 --- a/src/webrtc/util/MediaServer.ts +++ b/src/webrtc/util/MediaServer.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify diff --git a/src/webrtc/util/index.ts b/src/webrtc/util/index.ts index 893e96d..584b0c3 100644 --- a/src/webrtc/util/index.ts +++ b/src/webrtc/util/index.ts @@ -1,5 +1,5 @@ /* - Fosscord: A FOSS re-implementation and extension of the Discord.com backend. + Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Fosscord and Fosscord Contributors This program is free software: you can redistribute it and/or modify