mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-15 01:01:43 +10:00
Firebase Stub: simple implementation of data changes listener
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
import AuthConstants from './auth';
|
||||
|
||||
const valueEventType = 'value';
|
||||
|
||||
const resumesPath = 'resumes';
|
||||
const usersPath = 'users';
|
||||
const connectedPath = '/.info/connected';
|
||||
@ -18,6 +20,10 @@ const user2 = {
|
||||
};
|
||||
|
||||
class Database {
|
||||
static get valueEventType() {
|
||||
return valueEventType;
|
||||
}
|
||||
|
||||
static get resumesPath() {
|
||||
return resumesPath;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user