Add home screen view options
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -14,6 +14,7 @@ class Meme extends Realm.Object<Meme> {
|
||||
id!: Realm.BSON.UUID;
|
||||
type!: MEME_TYPE;
|
||||
uri!: string;
|
||||
size!: number;
|
||||
title!: string;
|
||||
description?: string;
|
||||
isFavorite!: boolean;
|
||||
@@ -30,6 +31,7 @@ class Meme extends Realm.Object<Meme> {
|
||||
id: 'uuid',
|
||||
type: { type: 'string', indexed: true },
|
||||
uri: 'string',
|
||||
size: 'int',
|
||||
title: 'string',
|
||||
description: 'string?',
|
||||
isFavorite: { type: 'bool', indexed: true, default: false },
|
||||
|
Reference in New Issue
Block a user