summary refs log tree commit diff
path: root/src/util/schemas/ConnectionCallbackSchema.ts
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2022-12-22 10:05:51 -0500
committerPuyodead1 <puyodead@proton.me>2023-03-18 19:09:51 -0400
commit21bfda32e452c05b8906bf318df7415d6cd5acd0 (patch)
tree997f6ff0dd5ec6969cfea270776e4d96f1d82820 /src/util/schemas/ConnectionCallbackSchema.ts
parentMerge pull request #1005 from Xanderplayz18/patch-1 (diff)
downloadserver-21bfda32e452c05b8906bf318df7415d6cd5acd0.tar.xz
add connections
Diffstat (limited to 'src/util/schemas/ConnectionCallbackSchema.ts')
-rw-r--r--src/util/schemas/ConnectionCallbackSchema.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/schemas/ConnectionCallbackSchema.ts b/src/util/schemas/ConnectionCallbackSchema.ts
new file mode 100644

index 00000000..09ae8a46 --- /dev/null +++ b/src/util/schemas/ConnectionCallbackSchema.ts
@@ -0,0 +1,7 @@ +export interface ConnectionCallbackSchema { + code?: string; + state: string; + insecure: boolean; + friend_sync: boolean; + openid_params?: any; // TODO: types +}