Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0e86159
init project
Newl6un Nov 6, 2024
d68b347
Feat/authentication
Newl6un Nov 7, 2024
ac6b605
Feat/authentication
Newl6un Nov 7, 2024
ca08a30
update: fix Https redirections
Newl6un Nov 11, 2024
ffd484c
Merge branch 'develop' of https://github.com/trunglq04/unit into develop
Newl6un Nov 11, 2024
6e95650
Feat/authentication
Newl6un Nov 11, 2024
fa5fd4f
Feat/authentication
Newl6un Nov 11, 2024
ce0eae1
update: implement repository and repository contract
Newl6un Nov 11, 2024
544942e
fix: resolve conflict
Newl6un Nov 11, 2024
a002c13
feat(CRUD-User): add update user info and get users
Newl6un Nov 12, 2024
ce71e8b
feat(CRUD-User): add update user info and get users
Newl6un Nov 12, 2024
f505b36
feat(CRUD-User): add api get user by id and adding logic when to get …
Newl6un Nov 13, 2024
1ec7a53
Merge branch 'develop' into feat/CRUD-User
Newl6un Nov 13, 2024
6f17896
Feat/crud user
Newl6un Nov 13, 2024
db3fb55
update: change logic when create object to return to client
Newl6un Nov 13, 2024
e8371f5
Merge branch 'feat/CRUD-User' of https://github.com/trunglq04/unit in…
Newl6un Nov 13, 2024
fdc334b
Merge branch 'develop' into feat/CRUD-User
Newl6un Nov 13, 2024
8a0b97c
Feat/crud user
Newl6un Nov 13, 2024
f407ce0
fix(shape-response-data): fix logic when shape object to repsonse
Newl6un Nov 13, 2024
6a0dc41
Merge branch 'feat/CRUD-User' of https://github.com/trunglq04/unit in…
Newl6un Nov 13, 2024
5187b0a
Feat/crud user (#9)
Newl6un Nov 13, 2024
c97c7b9
update(project): handle code writing errors and remove diffusion.
trunglq04 Nov 13, 2024
241f964
update(project): implement GetUserById.
trunglq04 Nov 13, 2024
99fe0bd
Merge branch 'develop' of https://github.com/trunglq04/unit into develop
trunglq04 Nov 13, 2024
702d238
feat(GetUserById): add userDto config
Newl6un Nov 13, 2024
cea3ec6
Merge develop to feat/CRUD-User
Newl6un Nov 13, 2024
f43b93f
Feat/crud user (#11)
Newl6un Nov 13, 2024
a1113a2
feat(CRUD-User): add update profile for user, upload profile image
Newl6un Nov 13, 2024
af36243
Merge branch 'develop' into feat/CRUD-User
Newl6un Nov 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
Loading