-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: working on dbService for multiple databases #449
- Loading branch information
1 parent
63584a0
commit 50b189c
Showing
4 changed files
with
31 additions
and
4 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
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,10 @@ | ||
export class DbService { | ||
This comment has been minimized.
Sorry, something went wrong. |
||
getDocument(moduleId, id): Promise<any> { | ||
return Promise.resolve([]); | ||
} | ||
|
||
updateDocument(moduleId, id, data): Promise<any> { | ||
return Promise.resolve([]); | ||
} | ||
|
||
} |
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,13 @@ | ||
import * as admin from 'firebase-admin'; | ||
import {DbService} from './db.service'; | ||
export abstract class FirebaseDatabaseService extends DbService { | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
getDocument(moduleId, id): Promise<any> { | ||
return admin.firestore().collection(moduleId).doc(id).get(); | ||
This comment has been minimized.
Sorry, something went wrong. |
||
} | ||
|
||
updateDocument(moduleId, id, data): Promise<any> { | ||
return admin.firestore().collection(moduleId).doc(id).update(data); | ||
} | ||
|
||
} |
This is
abstract