-
Notifications
You must be signed in to change notification settings - Fork 0
/
Todo-List.txt
161 lines (120 loc) · 4.3 KB
/
Todo-List.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
- Initialize express app ✓ DONE
- Installing packages ✓ DONE
- Adding folder structure ✓ DONE
- Connect to Mongo DB ✓ DONE
__________________________________________________________
- Impliminting user schema ✓ DONE
- Imliminting user controller ✓ DONE
- Imliminting user methods ✓ DONE
- Create user method ✓ DONE
- Register user route ✓ DONE
- Read user method ✓ DONE
- Render user data route ✓ DONE
- Update user method ✓ DONE
- Update user data route ✓ DONE
- Delete user method ✓ DONE
- Delete user route ✓ DONE
__________________________________________________________
- Implementing helper function to handle response ✓ DONE
__________________________________________________________
- Implementing rules schema ✓ DONE
- Impliminting rules routes ✓ DONE
- create - reade - update - delete ✓ DONE
- Imliminting rules controller ✓ DONE
- Imliminting rules methods ✓ DONE
- Create rules method ✓ DONE
- Read rules method ✓ DONE
- Update rules method ✓ DONE
- Delete rules method ✓ DONE
__________________________________________________________
- Implementing URLs schema ✓ DONE
- Impliminting URLs routes ✓ DONE
- create - reade - update - delete ✓ DONE
- Imliminting URLs controller ✓ DONE
- Imliminting URLs methods ✓ DONE
- Create URLs method ✓ DONE
- Read URLs method ✓ DONE
- Update URLs method ✓ DONE
- Delete URLs method ✓ DONE
__________________________________________________________
- Implementing projects schema ✓ DONE
{
project name: string ✓ DONE
tpye: enum[show, sell] ✓ DONE
project location: {} ✓ DONE
project image: string
porject details: string
buildings: ref by ID to buildings schema
}
- Imliminting projects controller ✓ DONE
- Imliminting projects methods ✓ DONE
- Create projects method ✓ DONE
- Read projects method ✓ DONE
- Read project method ✓ DONE
- Update projects method ✓ DONE
- Delete projects method ✓ DONE
__________________________________________________________
- Implementing buildings schema
{
number: number ✓ DONE
tpye: enum[show, sell] ✓ DONE
bulding location: string ✓ DONE
bulding image: string ✓ DONE
floors: ref by Id to floors schema ✓ DONE
}
- Imliminting buildings controller ✓ DONE
- Imliminting buildings methods ✓ DONE
- Create buildings method ✓ DONE
- Read buildings method ✓ DONE
- Update buildings method ✓ DONE
- Delete buildings method ✓ DONE
__________________________________________________________
- Implementing floors schema ✓ DONE
{
floorNumber: string
floorImage: string
unit: ref by Id to units schema
}
- Imliminting floors controller ✓ DONE
- Imliminting floors methods ✓ DONE
- Create floors method ✓ DONE
- Read floors method ✓ DONE
- Update floors method ✓ DONE
- Delete floors method ✓ DONE
__________________________________________________________
- Implementing units schema ✓ DONE
{
size:number
status: ['show', 'sell']
numberOfRooms: number
numberOfBathrooms: number
moreDetails: string
image:
}
- Imliminting units controller ✓ DONE
- Imliminting units methods ✓ DONE
- Create units method ✓ DONE
- Read units method ✓ DONE
- Update units method ✓ DONE
- Delete units method ✓ DONE
__________________________________________________________
- Implementing payments schema ✓ DONE
{
totalAmount
year:
month:
unitId:
customerId:
sallerId:
}
- Imliminting payments controller
- Imliminting payments methods
- Create payments method
- Read payments method
- Update payments method
- Delete payments method
__________________________________________________________
- Implementing authentication middleware ✓ DONE
- Implementing authorization middleware ✓ DONE
__________________________________________________________
- export pdf from paymint