-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq
More file actions
2376 lines (1604 loc) · 79.5 KB
/
q
File metadata and controls
2376 lines (1604 loc) · 79.5 KB
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[33mcommit 0ee37e52c88fe65643732e0e4d4d99f41a0e3e44[m[33m ([m[1;36mHEAD[m[33m -> [m[1;32mmain[m[33m)[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Sat Jan 25 13:46:24 2025 +0800
404
[33mcommit c0140434ebde66a82ebca16730248e050371e551[m[33m ([m[1;31morigin/main[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Merge: 70c9c41 e19894a
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Sat Jan 25 13:14:36 2025 +0800
Merge pull request #172 from FINTALIX/mike
[BE] - Modified Query for Admin Dashboard
[33mcommit e19894a4190388a513afffbfabba9fe411eb5fbc[m[33m ([m[1;31morigin/mike[m[33m, [m[1;32mmike[m[33m)[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Sat Jan 25 13:07:58 2025 +0800
[BE] - Modified Query for Admin Dashboard
[33mcommit 70c9c4137b2747981481de1f548c3a1376f415e7[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Sat Jan 25 13:06:29 2025 +0800
[FE] - Adjusted some stylings
[33mcommit a9105dba8d7fcd391178453510a271876b7ffe59[m
Merge: c42daa3 75a515a
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Sat Jan 25 12:39:54 2025 +0800
Merge pull request #171 from FINTALIX/Jenna
[FE] - Fixed category alert
[33mcommit 75a515a7cb999e194b25b8cd53ba793b5c0b4da0[m[33m ([m[1;31morigin/Jenna[m[33m, [m[1;32mJenna[m[33m)[m
Merge: 2d5d49e c42daa3
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Sat Jan 25 12:28:32 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into Jenna
[33mcommit 2d5d49e3e3bd83914b39e03b26f2dfeef977c6d3[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Sat Jan 25 12:28:18 2025 +0800
[FE] UI styling adjustments
[33mcommit 32dfcbfea0c2e454a8128f094752b5c9baaf2b23[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Sat Jan 25 12:02:42 2025 +0800
[FE] - Fixed category alert
[33mcommit c42daa3fb97042264f701d125a8a60e4c94c9879[m
Merge: a06511a fffd563
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Sat Jan 25 11:13:17 2025 +0800
Merge pull request #170 from FINTALIX/mike
Modified the Image Process of Profile
[33mcommit fffd5639fa5dc34e65f5e13586c4fccde6a955f1[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Sat Jan 25 11:04:35 2025 +0800
Modified the Image Process of Profile
[33mcommit a06511a27b829dfe3152e3a98dbec6b1f5c15856[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Sat Jan 25 11:01:42 2025 +0800
[BE] - Fixed edit transaction modal
[33mcommit 4b30c3d495ce0176e91e54dd241440fe6a316fc5[m
Merge: a48fa32 69aaaf2
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Sat Jan 25 03:07:30 2025 +0800
Merge pull request #169 from FINTALIX/Jenna
Modularized files
[33mcommit 69aaaf29a7a876c6933f01e0d097c96183c8a40b[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Sat Jan 25 02:51:28 2025 +0800
Deleted Files
[33mcommit 7e7a13ea300e360901f4b725e30018204f958d09[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Sat Jan 25 02:25:40 2025 +0800
Modularized files
[33mcommit a48fa32a11987b3ab1cfe1bdf166f75ec5fe51ea[m
Merge: eff721e 96369d8
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Sat Jan 25 01:57:28 2025 +0800
Merge pull request #168 from FINTALIX/najila
[BE] Update query and add error alert
[33mcommit 96369d88c39d2e75d18aee86f3e701967631cb9b[m[33m ([m[1;31morigin/najila[m[33m)[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Sat Jan 25 01:49:33 2025 +0800
Fix issues with alert
[33mcommit 8a1e97edc4895fc3da20295348de4c9103e73e02[m
Merge: eb65045 eff721e
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Sat Jan 25 00:31:33 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into najila
[33mcommit eb65045c4856cd09e89b735fe4b5fd9a64e198e1[m[33m ([m[1;32mnajila[m[33m)[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Sat Jan 25 00:21:36 2025 +0800
Add error alert for add category
[33mcommit eff721ecd9e1ec0c4dbdb184290334e9fe7824c4[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Sat Jan 25 00:16:58 2025 +0800
[FE] - Integrated footer and added some adjustments
[33mcommit e0fdd231879bd7e8f594c6a06dec32bb2d162551[m
Merge: d533238 e245ab4
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 23:27:23 2025 +0800
Merge pull request #167 from FINTALIX/vea
[Modularization] Modularize the "Remove Profile Picture" Modal in the User Settings and [Modularization] Modularize the 'Upload Profile Picture' Modal in the User Settings and [Modularization] Modularize the 'Remove Profile Picture' Modal in the User Settings
[33mcommit e245ab4f8758f153a0acc3bf35d90f362ae74989[m[33m ([m[1;31morigin/vea[m[33m, [m[1;32mvea[m[33m)[m
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 23:23:16 2025 +0800
[Modularization] Modularize the 'Upload Profile Picture' Modal in the User Settings and [Modularization] Modularize the 'Remove Profile Picture' Modal in the User Settings
[33mcommit b3b9e8713ff1ead512dad12bddbe95a7719ddb96[m
Merge: 6989a4a d533238
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 23:22:17 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into vea
[33mcommit 9e6d8d10ea84ac283eec2262bfbfe5abff9e5c09[m
Merge: 06e4667 d533238
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 23:16:56 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into najila
[33mcommit d5332386fad26e5cd6e19359603acd4ca5e6fea6[m
Merge: 8213c5b 2802e8f
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 23:14:31 2025 +0800
Merge pull request #166 from FINTALIX/mike
Fix Add and Delete Categories Issues
[33mcommit 2802e8fd25df632d9ad15f1c8d7bb2c748b28daa[m
Merge: 9fa51d5 8213c5b
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 23:06:38 2025 +0800
Fix Add and Delete Categories
[33mcommit 8213c5b52ec0859d1ba10c08bc784e5a1bc1f37d[m
Merge: 6b9a848 f797a21
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 22:57:40 2025 +0800
Merge pull request #165 from FINTALIX/Jenna
[BE] Modularized classes, processes, deleted file, and few adjustments
[33mcommit 6989a4a1f22d0c44ba7dd758781eb3fc532a61b3[m
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 22:28:43 2025 +0800
[Modularization] Modularize the 'Upload Profile Picture' Modal in the User Settings and [Modularization] Modularize the 'Remove Profile Picture' Modal in the User Settings
[33mcommit 6b9a8485886fc160608c0ebdc702458ecee0bd77[m
Merge: 9db2737 1ebcd7a
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 22:25:48 2025 +0800
Merge pull request #164 from FINTALIX/markjoseph
[FE]Enhance 404: adding a htaccess to custom 404
[33mcommit 06e46672262c280c17080cae2eeca73367885e57[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 22:22:37 2025 +0800
[BE] Update query for category dropdown
[33mcommit 9fa51d5eec72a026a3b8f2212d0c1dc91da5c62a[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 22:04:25 2025 +0800
Fix Add and Delete Categories
[33mcommit 1ebcd7a533675b3971cd6019a639cf54a4c6d261[m[33m ([m[1;31morigin/markjoseph[m[33m, [m[1;32mmarkjoseph[m[33m)[m
Author: E2-M4RK <delatorremark0428@gmail.com>
Date: Fri Jan 24 22:00:06 2025 +0800
[FE] Add base href
[33mcommit f797a215ff3b603ef36f113197d0d2ae63af4138[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Fri Jan 24 21:26:08 2025 +0800
[BE] Include new file in the admin | categories
[33mcommit 9b0a2f9abbb2199dccf93102ed52b8974f6ce8d1[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Fri Jan 24 20:45:07 2025 +0800
[BE] Modularized classes, processes, deleted file, and few adjustments
[33mcommit 7a0062fbb1e66e4c7af02edd7dad0f67fb7e76ff[m
Merge: fd9a5b4 9db2737
Author: E2-M4RK <delatorremark0428@gmail.com>
Date: Fri Jan 24 19:52:50 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into markjoseph
[33mcommit fd9a5b469c26a458d605e6b47e69d2f695fb9048[m
Author: E2-M4RK <delatorremark0428@gmail.com>
Date: Fri Jan 24 19:46:55 2025 +0800
[FE]Enhance 404: adding a htaccess to custom 404
[33mcommit 9db2737f5ef824f4814fe0180c9cc37acc838e18[m
Merge: 6957661 dafb423
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 19:46:42 2025 +0800
Merge pull request #163 from FINTALIX/najila
[FE] Adjust UI elements in Login and Registration Pages
[33mcommit dafb423ba684d8e24e12c41eb646d83224b30ee9[m
Merge: e8adf27 6957661
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 19:37:10 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into najila
[33mcommit e8adf27a1558722c2a58215a24d51a466add539b[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 19:35:22 2025 +0800
[FE] Adjust UI elements in Login and Registration Pages
[33mcommit 937e11621db03d29cedf9e78ab918961daa2db7a[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 19:29:45 2025 +0800
[FE] Adjust UI elements in Login and Registration Pages
[33mcommit 695766122039f6eeadb7c8a14554f8203b130f83[m
Merge: 750dc23 018bf0a
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 18:45:56 2025 +0800
Merge pull request #162 from FINTALIX/najila
Modularized classes, modals, processes, and javascript
[33mcommit 018bf0a3ef111f346ee738355a877995f5bed846[m
Merge: 13795e3 750dc23
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 18:39:34 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into najila
[33mcommit 13795e33f1b5c0d3daa7287b7b77de8d6ca0b756[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 18:31:47 2025 +0800
Modularized classes, modals, processes, and javascript
[33mcommit 750dc23ebab15be908a2fe9121cdc06c5a31ca47[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Fri Jan 24 18:22:31 2025 +0800
[DA] - Uploaded the sql file
[33mcommit c9dea5a3f408a995aca9d2e850c80a063cfa4456[m
Merge: 0551177 e6b401d
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 17:46:27 2025 +0800
Merge pull request #161 from FINTALIX/Jenna
[BE] Removed Iframe
[33mcommit 05511776d734d4798886c93318970d074340afc6[m
Merge: d03e347 2a51fd6
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Fri Jan 24 17:45:25 2025 +0800
Merge pull request #160 from FINTALIX/austine
[Modularization] Modularize the 'Delete Account' Modal in the User Settings
[33mcommit e6b401dfff5952e99dd95c5971537684584c057e[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Fri Jan 24 17:05:44 2025 +0800
[BE] Removed Iframe
[33mcommit 2a51fd6f0ceb1dfb1040d23b7a9002fbf04ee712[m[33m ([m[1;31morigin/austine[m[33m, [m[1;32maustine[m[33m)[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Fri Jan 24 16:59:31 2025 +0800
[Modularization] Modularize the 'Delete Account' Modal in the User Settings
[33mcommit d03e3473105b6c23fa1de949aaafc286ef7fb74e[m
Merge: 6ebcb88 f3dc297
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 16:48:50 2025 +0800
Merge pull request #159 from FINTALIX/mike
Fix some issues in register and Modularized the Delete Category
[33mcommit f3dc2978b048dda2dd694907255c0664a87114ba[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 16:44:44 2025 +0800
Fix Issues in Register and Modularized Delete Category
[33mcommit 6a6645e116d92bd591d803a76216e2d8905312f2[m
Merge: efe0f05 6ebcb88
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 16:42:27 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into mike
[33mcommit 6ebcb8864ddf64ec3bedd93ce02227a2cec4015a[m
Merge: 6c18ada cf34a2e
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 16:30:01 2025 +0800
Merge pull request #154 from FINTALIX/vea
User Settings and images and [Modularization] Modularize the 'Upload Profile Picture' Modal in the User Settings and [Modularization] Modularize the 'Remove Profile Picture' Modal in the User Settings
[33mcommit cf34a2e2f4adfe2679d6394afa19aad7430ae935[m
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 16:22:28 2025 +0800
Adjusted Settings Profile and Logo Upload Cancellation
[33mcommit b3e7a8ee25844a608524479743f3ffc4aca95d26[m
Merge: f1cf8c4 6c18ada
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 16:21:32 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into vea
[33mcommit efe0f0538c29a96e5d1c1e6fa865b394b0936776[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 16:04:33 2025 +0800
Fix some issues in register and Modularized the Delete Category
[33mcommit 6c18adab9412bb095582c672f611bccbe4c960a1[m
Merge: d73d7a1 a507c08
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 15:35:57 2025 +0800
Merge pull request #157 from FINTALIX/mike
[BE] - Modularized Add Categories
[33mcommit a507c0847f5e3489986c02925957cf0d491f3fc9[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 15:06:57 2025 +0800
[BE] - Add Categories Modularization
[33mcommit f1cf8c41c9963d19f64ceafa50f61a822dc5471f[m
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 14:54:06 2025 +0800
[Modularization] Modularize the [Modularization] Modularize the 'Upload Profile Picture' Modal in the User Settings and [Modularization] Modularize the 'Remove Profile Picture' Modal in the User Settings
[33mcommit b459d3db6ecf78d8b19007ae03e0b7abe58c0700[m
Merge: f8f0d26 d73d7a1
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 14:49:51 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into vea
[33mcommit 3553c0de29079f3f3b9d93fdc8c65d8732cfa71b[m
Merge: 20f8158 d73d7a1
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 14:44:14 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into mike
[33mcommit d73d7a103beac400c9368b9f5fe6ea08ba8e91fa[m
Merge: 0a250dd 84e28fb
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Fri Jan 24 13:56:00 2025 +0800
Merge pull request #158 from FINTALIX/najila
Refactored code for readability and functionality improvements
[33mcommit 84e28fb9295d0f1451c62d33f3c63d3aa3c0dbf8[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 13:43:05 2025 +0800
Fixed issues with automatic type selection in edit transaction modal
[33mcommit 0f079bffac6ad6cb24f14f752aa8e9ff90e606e9[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Fri Jan 24 12:06:41 2025 +0800
Various functionality improvements
[33mcommit f8f0d2635e8906e4a76cf551753f60ba7f4158f8[m
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 11:46:55 2025 +0800
User settings and Image Process
[33mcommit 3c541d1da54b570ffa909011e6e86873b6b0a00d[m
Merge: aafe71c 0a250dd
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 11:38:45 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into vea
[33mcommit 20f81587a81e4ee2a2510e2c96c1dfeb995b2c5a[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 11:07:57 2025 +0800
[BE] - Modularized Add Categories
[33mcommit 0a250dd29c99e4f698adc5cfabc32d3cadaab456[m
Merge: e74d5db f0cdc75
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 10:23:24 2025 +0800
Merge pull request #156 from FINTALIX/mike
[BE] - Fixed some issues in login
[33mcommit f0cdc75dffe32ef495543c14f7c188b72fec256a[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 10:14:52 2025 +0800
[BE] - Modularization and fix Login and Register
[33mcommit 08cca2090569a0765b6dda14f5a4d0444a68d130[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 09:41:29 2025 +0800
[BE] - Modularization and fix login and register
[33mcommit 6d14839caaba0c080e0201509ef4f8279b59c899[m
Merge: 61890b6 e74d5db
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 09:40:06 2025 +0800
qMerge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into mike
[33mcommit e74d5dbbbb20f0c791081b70aa779730f599a319[m
Merge: ff12c99 a2ca564
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 09:25:06 2025 +0800
Merge pull request #155 from FINTALIX/Jenna
[FE] Customize scrollbar appearance and adjust layout for responsiveness
[33mcommit 61890b6820b47a31eb3fee3e1a035033f1676649[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 09:23:28 2025 +0800
[BE] - Modularization and Fix the login and register
[33mcommit 7d187c651de49e7579dbcb51c70370886d19d450[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 08:13:56 2025 +0800
[BE] - Implement validation in password for registration
[33mcommit 0b1acf5c4c89bf1e1ec3035f785e84609d79469a[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Fri Jan 24 07:50:20 2025 +0800
[BE] - Fixed some issues in login
[33mcommit a2ca564c5a28deffa9089b0a4ff149e5d28eb995[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Fri Jan 24 02:34:25 2025 +0800
[FE] Customize scrollbar appearance and adjust layout for responsiveness
[33mcommit aafe71c44b8c2fd6b5f4de6e4f5847a38565e9b4[m
Author: veaavygail <veaavygail@gmail.com>
Date: Fri Jan 24 01:19:47 2025 +0800
User Settings and images
[33mcommit ff12c99975ad9af03eec1e12a51b318c94961133[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Fri Jan 24 00:29:14 2025 +0800
[FE] - Deleted unnecessary semi-colons
[33mcommit bea4dae0c2a110fa8a7b5f7f18cc94c56e6c7038[m
Merge: 256dd9e 1cbb080
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Fri Jan 24 00:25:14 2025 +0800
Merge pull request #153 from FINTALIX/Jenna
[BE] Danger Zone Delete Feature
[33mcommit 1cbb08092bc1bac76a84abc121fd6356064b0521[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Fri Jan 24 00:14:08 2025 +0800
[BE] Correction
[33mcommit d7465fc322611793143f12ee5b03da5676beec42[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Thu Jan 23 23:52:16 2025 +0800
[BE] Danger Zone Delete Feature
[33mcommit 256dd9e6ff7c1a89affe571951d99a85e889014d[m
Merge: 149b573 244b796
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 23:41:01 2025 +0800
Merge pull request #152 from FINTALIX/mike
BE] - Implementing Functionality to the Back-End of the Admin Dashboard View Report Page
[33mcommit 244b796c85649135f45a60be1d3667bbfe53bc7d[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Thu Jan 23 23:30:35 2025 +0800
[BE] - Implementing Functionality to the Back-End of the Admin Dashboard View Report Page
[33mcommit 149b57395ce2b08f75fa6a7bac3acb95dfb1d759[m
Merge: 8688d13 47fe466
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 22:57:06 2025 +0800
Merge pull request #151 from FINTALIX/najila
[BE] Update query for recent logins table
[33mcommit 8688d132c791699cc9b673572a02881db7c85f92[m
Merge: f7d30d0 130832e
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 22:54:23 2025 +0800
Merge pull request #148 from FINTALIX/coleen
Modularization of the footer.php
[33mcommit 47fe4664da117bea7d907a4b125c0dfe20b85bef[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 22:41:08 2025 +0800
[BE] Corrected query for recent logins
[33mcommit 8ef4e9ab77654bd84d38731a299cc8ed3b296096[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 22:39:42 2025 +0800
[BE] Update query for recent logins table
[33mcommit 0ff2d7134e031ff7cd3e1187b0f0145dbcdc89a1[m
Merge: bf6092f f7d30d0
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 22:37:38 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into najila
[33mcommit f7d30d075014f202ba13756f5a90278022e0e8fd[m
Merge: 807655f be5c615
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 22:06:49 2025 +0800
Merge pull request #150 from FINTALIX/vea
[BE] - Implementing Functionality to the Back-End of the Admin Settings Page #113 and [BE] - Automated Image Processing for Dynamic Navbar Updates #135
[33mcommit be5c6154de9c77b39733c3429d8302d0004f3350[m
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 21:47:35 2025 +0800
database
[33mcommit 735c5e11be9a575c214acfea7a56b3c220892a7d[m
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 21:32:04 2025 +0800
enhancement
[33mcommit da06149efaa57fa916519958f09d50d305623368[m
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 21:18:45 2025 +0800
enhancement
[33mcommit 506f02dba8774240647b57ff3b295b393eadd0db[m
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 21:01:34 2025 +0800
API database and batch users
[33mcommit 177700d454df6043a9d03c0bc0b70c04ffa9d905[m
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 20:16:34 2025 +0800
Admin side view.php
[33mcommit 130832ed5ae8ad98e53f9e86dd8fb8546560cf36[m[33m ([m[1;31morigin/coleen[m[33m, [m[1;32mcoleen[m[33m)[m
Author: colelezzz <islesleen@gmail.com>
Date: Thu Jan 23 20:15:12 2025 +0800
Modularization of the Footer
[33mcommit 9826d27b82616376a7cbd1d5abfdc29872d3aa78[m
Author: colelezzz <islesleen@gmail.com>
Date: Thu Jan 23 20:12:40 2025 +0800
Modularization of the footer.php
[33mcommit a28b90709d64b3b0f3fe98b7ec0385e4143aa84c[m
Merge: f28d40a 807655f
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 20:08:01 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into vea
[33mcommit 807655f31272550d7e52383af87abdb8be144056[m
Merge: c08ef30 4c055b6
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 20:04:42 2025 +0800
Merge pull request #142 from FINTALIX/austine
[BE] - Implementing Functionality to the Back-End of the Manage Users Search, Sort By and Delete Button (w/ delete modal) Feature
[33mcommit f28d40a33650edde5f622f05ae8a07975663d57b[m
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 19:59:42 2025 +0800
[BE] - Implementing Functionality to the Back-End of the Admin Settings Page
#113 and
[BE] - Automated Image Processing for Dynamic Navbar Updates
#135
[33mcommit bf6092f69cf6ae08ba7b00d431e55ffe852f626f[m
Merge: a6ccdbf c08ef30
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 19:23:50 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into najila
[33mcommit 4c055b66b3a9c1e36ad0e8b650847422ac941aa6[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Thu Jan 23 18:56:45 2025 +0800
[BE] - Implementing Functionality to the Back-End of the Manage Users
[33mcommit 2268f52f2492d77d9120184e4ab9441c123ef8b9[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Thu Jan 23 18:56:18 2025 +0800
[BE] - Implementing Functionality to the Back-End of the Manage Users
[33mcommit c08ef30e3cff36e654b13b43a41a7e61b4a0dffd[m
Merge: 9163a2a 44c7aa7
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 17:58:15 2025 +0800
Merge pull request #140 from FINTALIX/mike
[BE] - Implementing Functionality to the Back-End of the Admin Dashboard View Report Page
[33mcommit 44c7aa734f22edc4c4359730283be233d04c3d9b[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Thu Jan 23 16:38:33 2025 +0800
[BE] - Implementing Functionality to the Back-End of the Admin Dashboard View Report Page
[33mcommit 9163a2a53e16069bd907919842599fd458a72510[m
Merge: da85b3b 2fb7b59
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 16:32:26 2025 +0800
Merge pull request #134 from FINTALIX/najila
[FE] Login Page - Removed remember me feature and adjusted UI elements
[33mcommit a6ccdbfeaa0cd51dd5bd21f8bad5d420855abd0d[m
Merge: 2fb7b59 da85b3b
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 15:13:33 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into najila
[33mcommit 2fb7b59a7358f520fe7b2c1fffe60eb3e98f987b[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 14:50:49 2025 +0800
[FE] Login Page - Removed remember me feature and adjusted UI elements
[33mcommit da85b3bb6710042ad4c41f315f0dd8777059586e[m
Merge: 86bf9c6 eeabfee
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 14:17:53 2025 +0800
Merge pull request #133 from FINTALIX/najila
[BE] - Implementing Functionality to the Back-End of the Manage Users View Button
[33mcommit eeabfeef544be573b3d0f0db584b247c18411f97[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 14:04:44 2025 +0800
[BE] - Implementing Functionality to the Back-End of the Manage Users View Button
[33mcommit 86bf9c6cfdbfc403c795f8e81a4dfcfc3b4a0aa8[m
Merge: eda937b 5a05b8c
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 12:45:45 2025 +0800
Merge pull request #132 from FINTALIX/vea
PesoBuddy API for users and batch users
[33mcommit 5a05b8ccf83c71c2a8fbdaab738618e957d0ebd0[m
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 12:32:27 2025 +0800
PesoBuddy API
[33mcommit 50cde1cd4436b001d35e970981f0171ef88758f7[m
Author: veaavygail <veaavygail@gmail.com>
Date: Thu Jan 23 12:26:06 2025 +0800
PesoBuddy API for users and batch users
[33mcommit eda937b07d8cbcf5b812f7ff4a58c77cd432582c[m
Merge: 5fa7b1a 88b9fd9
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 11:23:45 2025 +0800
Merge pull request #130 from FINTALIX/najila
[BE] Create user class and table for Manage Users Page
[33mcommit 5fa7b1aab80f687e1c0fea8c1a36e5008ab2d7c7[m
Merge: a11b976 758b399
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 11:09:07 2025 +0800
Merge pull request #129 from FINTALIX/austine
[BE] - Made some adjustments to User Dashboard Budget Tracker
[33mcommit 88b9fd96dd7e0707b1a8cbbf4933fe2574f81eaa[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 11:04:12 2025 +0800
[BE] Create user class and table for Manage Users Page
[33mcommit 758b3997e036a6a15ca76ea2787ec1844824e8da[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Thu Jan 23 10:59:29 2025 +0800
[BE] - Made some adjustments to User Dashboard Budget Tracker
[33mcommit a11b976b380500771c315b1228629fec29b7c8f7[m
Merge: 98eccb7 85ac312
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 02:02:39 2025 +0800
Merge pull request #128 from FINTALIX/Jenna
[BE] Fix: Corrected category type value from sentence case to capital…
[33mcommit 85ac31205ae9df52ba8f08b475ac3cbd60980393[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Thu Jan 23 01:51:06 2025 +0800
[BE] Fix: Corrected category type value from sentence case to capitalized case
[33mcommit 98eccb7bc0ab788a1a7830ee05308ffe1da47919[m
Merge: bf1693e f46cd8e
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 01:39:01 2025 +0800
Merge pull request #127 from FINTALIX/markjoseph
[FE]-Admin Dashboard Changing the font and size of a tooltip
[33mcommit f46cd8ed340f122e643ef0b85bcebd6c5ab60f34[m
Author: E2-M4RK <delatorremark0428@gmail.com>
Date: Thu Jan 23 01:33:10 2025 +0800
[FE]-Admin Dashboard Changing the font and size of a tooltip
[33mcommit bf1693e167e357f82f7699bd5c3122369a6e868a[m
Merge: 1b5f250 2342588
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 01:22:16 2025 +0800
Merge pull request #126 from FINTALIX/markjoseph
[FE]- creation of 404 Page for the website
[33mcommit 2342588f0f28bcdb82839af04faec0282a466623[m
Author: E2-M4RK <delatorremark0428@gmail.com>
Date: Thu Jan 23 01:14:46 2025 +0800
[FE]- creation of 404 Page for the website
[33mcommit 1b5f250301e5601fc90de555e5c35cec7c621fcd[m
Merge: 03406c5 8e583e6
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 01:01:48 2025 +0800
Merge pull request #123 from FINTALIX/Jenna
[BE] Admin | Manage Categories CRUD and User Specific List of Categories
[33mcommit 03406c5b8b91ac9b03c66af1038fd24e13ef763a[m
Merge: 2f9c2db 0b5a1ce
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Thu Jan 23 00:56:26 2025 +0800
Merge pull request #125 from FINTALIX/najila
[BE] Implementing Functionality to the Back-End of the User Dashboard Edit and Delete Transaction History
[33mcommit 0b5a1ce0186de7bb3705934e3db0d6044c949705[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 00:50:18 2025 +0800
Fixed transaction filtering
[33mcommit 8e583e6d8bb595496983cfc2cd77937572365f22[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Thu Jan 23 00:27:33 2025 +0800
[BE & FE] Improved category modal functionalities and adjusted UI elements
[33mcommit bf0eb9ba2121bce76a65d382b4805d4f61dfdfa5[m
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Thu Jan 23 00:24:53 2025 +0800
[BE] Implementing Functionality to the Back-End of the User Dashboard Edit and Delete Transaction History
[33mcommit dfc552425279f1697dbbd1d5edfbf3049b43a35e[m
Merge: cbad82f 2f9c2db
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Thu Jan 23 00:13:02 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into Jenna
[33mcommit 2f9c2db2d81acf15ccd7d37eaf87844e99f403f6[m
Merge: de987a9 1ee1b22
Author: Najila Joanne Batistil <najilabatistil1@gmail.com>
Date: Wed Jan 22 23:57:49 2025 +0800
Merge pull request #124 from FINTALIX/austine
[BE] - Implementing Functionality to the Back-End of the User Dashboard Budget Tracker Section
[33mcommit 1ee1b22b2d634c99a0f68b53efba60c967f26d6a[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Wed Jan 22 23:53:09 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Budget Tracker Section
[33mcommit 21079d68436ae764ed1d4bf93d2cd9854fd43a37[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Wed Jan 22 23:46:01 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Budget Tracker Section
[33mcommit 6fa0b53db0790f574c9daf745e7fd56eaa62b460[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Wed Jan 22 23:18:22 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Budget Tracker Section
[33mcommit aaed2046c9b2d49de8e6477cea9ca3ed37dc4a06[m
Author: AJBernardo <austinebernardo8104@gmail.com>
Date: Wed Jan 22 22:33:30 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Budget Tracker Section
[33mcommit cbad82f1ab54bde5e3f2d0d6cc44d093a6567087[m
Author: Jenna Miles Reyes <atienzajennamiles@gmail.com>
Date: Wed Jan 22 21:59:04 2025 +0800
[BE] Admin | Manage Categories CRUD and User Specific List of Categories
[33mcommit de987a990432570827075f2bf94275c00d1aa796[m
Merge: 4166527 d66774d
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Wed Jan 22 21:40:59 2025 +0800
Merge pull request #122 from FINTALIX/mike
[BE] - Implementing Functionality to the Back-End of the User Dashboard Add and Delete Categories
[33mcommit d66774d072ad1bab1aa8eb35e596e0f6ac8b736c[m
Merge: c7bf12e 4166527
Author: Md-Lei <dharenlei7@gmail.com>
Date: Wed Jan 22 21:35:16 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into mike
[33mcommit c7bf12eb03022b10614dac1cbe1fdaf58c188677[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Wed Jan 22 21:31:00 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Add and Delete Categories
[33mcommit 4166527f83eda2975167c748f37f775ca42d82a1[m
Merge: 1f57ad1 8d4e04a
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Wed Jan 22 21:14:34 2025 +0800
Merge pull request #121 from FINTALIX/vea
[BE] - Implementing Functionality to the Back-End of the User Dashboard Settings Page #79
[33mcommit 1f57ad1342c285b8ed840c15232c6281b977c7e8[m
Merge: 8e6b0b7 75e6b78
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>
Date: Wed Jan 22 21:01:01 2025 +0800
Merge pull request #116 from FINTALIX/mike
[BE] - Implementing Functionality to the Back-End of the User Dashboard Add and Delete Categories
[33mcommit 75e6b78902951a77c2c4261a5436dc1070e03b2d[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Wed Jan 22 19:43:16 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Add and Delete Categories
[33mcommit 8d4e04ae9f4642782cf2620800e85808a44bd056[m
Author: veaavygail <veaavygail@gmail.com>
Date: Wed Jan 22 17:28:07 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Settings Page #79
[33mcommit 9b57ae5006becb4cde61675ff35b8da094647c14[m
Author: Md-Lei <dharenlei7@gmail.com>
Date: Wed Jan 22 14:39:19 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Add and Delete Categories
[33mcommit fc9f38c80a1546ba940203fe3e75b93fc3b7bdf2[m
Merge: a25c4a6 8e6b0b7
Author: Md-Lei <dharenlei7@gmail.com>
Date: Wed Jan 22 14:15:47 2025 +0800
Merge branch 'main' of https://github.com/FINTALIX/PesoBuddy.com into mike
[33mcommit 7a7f9a5b205f82d5605a7f05b34bdca3fe75fa74[m
Author: veaavygail <veaavygail@gmail.com>
Date: Wed Jan 22 04:11:56 2025 +0800
[BE] - Implementing Functionality to the Back-End of the User Dashboard Settings Page
#79
[33mcommit 8e6b0b70706d3e208fe29a10483fa736d4934e73[m
Merge: a580cb8 0db8e98
Author: Austine Jade Bernardo <157371548+AJBernardo@users.noreply.github.com>