summary refs log tree commit diff
path: root/src/util/schemas/UserRelationsResponse.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-04-19 01:24:51 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-04-19 01:24:51 +1000
commit4c6b1e8e16a1f44dc7c5f9abd74c0615d0e4e51c (patch)
treef9d9858cc5e2ffab76aa2f15d8d99a2facd35902 /src/util/schemas/UserRelationsResponse.ts
parentEnforce theme_colors to be ints (diff)
downloadserver-4c6b1e8e16a1f44dc7c5f9abd74c0615d0e4e51c.tar.xz
Fix UserRelationsResponse schema
Diffstat (limited to 'src/util/schemas/UserRelationsResponse.ts')
-rw-r--r--src/util/schemas/UserRelationsResponse.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/util/schemas/UserRelationsResponse.ts b/src/util/schemas/UserRelationsResponse.ts
deleted file mode 100644

index 38507420..00000000 --- a/src/util/schemas/UserRelationsResponse.ts +++ /dev/null
@@ -1,27 +0,0 @@ -/* - Spacebar: A FOSS re-implementation and extension of the Discord.com backend. - Copyright (C) 2023 Spacebar and Spacebar 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 <https://www.gnu.org/licenses/>. -*/ - -export interface UserRelationsResponse { - object: { - id?: string; - username?: string; - avatar?: string; - discriminator?: string; - public_flags?: number; - }; -}