From 8595646b72d42953814ffa2493630d15cfeeb857 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 13 Feb 2021 09:30:21 +0100 Subject: :sparkles: mongoose Schemas --- src/models/Status.ts | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/models/Status.ts') 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, +}; -- cgit 1.5.1