-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #970 from UNICEFECAR/addSearchGame
Add search game and advice should be filter by age period
- Loading branch information
Showing
7 changed files
with
583 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,15 @@ export const videoTypeImage = "novideo"; | |
export const backupGDriveFolderName = 'ParentBuddy'; | ||
export const backupGDriveFileName = 'mybackup.json'; | ||
export const tempRealmFile = RNFS.DocumentDirectoryPath + '/' + 'user1.realm'; | ||
export const tempFuseJsonPath = RNFS.DocumentDirectoryPath + '/' + 'fuse-index.json'; | ||
export const backUpPath = RNFS.DocumentDirectoryPath + '/mybackup.json'; | ||
export const tempbackUpPath = RNFS.TemporaryDirectoryPath + 'mybackup.json'; | ||
export const firstPeriodicSyncDays = 7; | ||
export const secondPeriodicSyncDays = 30; | ||
export const shareText = (String(buildFor) != buildForBebbo) ? '\nhttps://www.bebbo.app/foleja/share/' : '\nhttps://www.bebbo.app/share/'; | ||
export const shareTextButton = (String(buildFor) != buildForBebbo) ? 'https://www.bebbo.app/foleja/share/' : 'https://www.bebbo.app/share/'; | ||
export const bebboShareMailId = 'mailto:[email protected]'; | ||
export const folejaShareMailId = 'mailto:[email protected]'; | ||
export const maleData: any = { | ||
"id": 37, | ||
"name": "Male", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { ObjectSchema } from "realm"; | ||
|
||
export type ActivityHistoryEntity = { | ||
keyword: string; | ||
createdAt: Date; | ||
}; | ||
export const ActivitySearchHistorySchema: ObjectSchema = { | ||
name: 'ActivitySearchHistory', | ||
properties: { | ||
keyword: { type: 'string' }, | ||
createdAt: { type: "date" }, | ||
|
||
}, | ||
primaryKey: 'keyword' | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.