mirror of https://gitlab.com/ecentrics/concordia
Apostolos Fanakis
4 years ago
10 changed files with 53 additions and 30 deletions
@ -0,0 +1,9 @@ |
|||||
|
export const POST_SUBJECT = 'subject'; |
||||
|
export const POST_CONTENT = 'content'; |
||||
|
|
||||
|
const postsDatabaseKeys = [ |
||||
|
POST_SUBJECT, |
||||
|
POST_CONTENT, |
||||
|
]; |
||||
|
|
||||
|
export default postsDatabaseKeys; |
@ -0,0 +1,7 @@ |
|||||
|
export const TOPIC_SUBJECT = 'subject'; |
||||
|
|
||||
|
const topicsDatabaseKeys = [ |
||||
|
TOPIC_SUBJECT, |
||||
|
]; |
||||
|
|
||||
|
export default topicsDatabaseKeys; |
@ -1,9 +1,9 @@ |
|||||
export const PROFILE_PICTURE = 'profile_picture'; |
export const USER_PROFILE_PICTURE = 'profile_picture'; |
||||
export const LOCATION = 'location'; |
export const USER_LOCATION = 'location'; |
||||
|
|
||||
const userDatabaseKeys = [ |
const userDatabaseKeys = [ |
||||
PROFILE_PICTURE, |
USER_PROFILE_PICTURE, |
||||
LOCATION, |
USER_LOCATION, |
||||
]; |
]; |
||||
|
|
||||
export default userDatabaseKeys; |
export default userDatabaseKeys; |
||||
|
Loading…
Reference in new issue