mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 05:26:46 +00:00
fetch posts from db, can post and like posts
This commit is contained in:
parent
7f28b6030a
commit
32b336327a
1 changed files with 9 additions and 0 deletions
9
src/constants/collections.ts
Normal file
9
src/constants/collections.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
/**
|
||||||
|
* Register all firestore collections
|
||||||
|
*/
|
||||||
|
enum Collections {
|
||||||
|
USERS = 'users',
|
||||||
|
POSTS = 'posts',
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Collections;
|
||||||
Loading…
Reference in a new issue