summary refs log tree commit diff
path: root/src/models/Status.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-13 09:30:21 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-13 09:30:21 +0100
commit8595646b72d42953814ffa2493630d15cfeeb857 (patch)
tree4cf5222fcab42d47f9642093ccffe289084daf19 /src/models/Status.ts
parentmove guild arrays into seperate collections (diff)
downloadserver-8595646b72d42953814ffa2493630d15cfeeb857.tar.xz
:sparkles: mongoose Schemas
Diffstat (limited to 'src/models/Status.ts')
-rw-r--r--src/models/Status.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/models/Status.ts b/src/models/Status.ts

index c4dab586..5a9bf2ca 100644 --- a/src/models/Status.ts +++ b/src/models/Status.ts
@@ -5,3 +5,9 @@ export interface ClientStatus { mobile?: string; // e.g. iOS/Android web?: string; // e.g. browser, bot account } + +export const ClientStatus = { + desktop: String, + mobile: String, + web: String, +};