Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f07459d
[Msal- Azure] Installed the msal browser and msal react
Apr 4, 2024
4f4c5b0
[Msal- Azure] Instatiated the public client object from the msal-broswer
Apr 4, 2024
e50dbe2
[Msal-Azure] Registered app with Azure Id and got client id and other…
Apr 4, 2024
3935f78
[Msal-Azure] Instantiated the public client application from msal bro…
Apr 4, 2024
d80c504
[Msal-Azure] Passed the created object in the application component a…
Apr 4, 2024
b6807c5
[Msal-Azure] For every component that needs to access the msal authen…
Apr 4, 2024
5749b3f
[Msal-Azure] Passing the application instance to the MsalProvider
Apr 4, 2024
01136ed
[Msal-Azure] Using useMsal hook provided by the msal-react
Apr 4, 2024
17bf542
[Msal- Azure] Accessing the Api's provided by the instance.
Apr 4, 2024
a6608ab
[Msal-Azure] Passing another option to the loginRedirect function.
Apr 4, 2024
605c346
[Msal-Azure] Using the useAuthenticated hook provided by the msal-rea…
Apr 4, 2024
82b2923
[Msal-Azure] Putting the conditions properly to show the sign in and …
Apr 4, 2024
328a511
[Msal-Azure] Using the hooks provided by the msal react to show the a…
Apr 4, 2024
2f7ff7c
[Msal-Azure] Showing the userName if signed in.
Apr 4, 2024
9e3d2cf
[Msal-azure] Added the event to dispaly the logged in username and al…
Apr 5, 2024
00fb6e6
[Msal-Azure] Signed in succesfully using the given client is and auth…
Apr 5, 2024
5d45da0
[Msal-Azure] Added the form component
Apr 8, 2024
1e3ea7d
[Msal-Azure] Function to make request
Apr 8, 2024
2377d85
[Msal-Azure] Making the request correctly
Apr 8, 2024
6910c11
[Msal-Azure] Removed the unnecessary consoles
Apr 10, 2024
0358fbb
[Msal-Azure] Installed axios in the project
Apr 10, 2024
67a79eb
[Msal-Azure] Made the request using axios
Apr 10, 2024
ee956e2
[Msal-Azure] Commented the profile compoenent as it was not necessary
Apr 29, 2024
37768ad
[Msal-azure] Removed all the unnecessary codes and files from the pro…
Apr 30, 2024
19a062f
changed the profile route to employee route
Apr 30, 2024
ba7fc9a
[Msal-azure] Added the username in Home component itself
Apr 30, 2024
a701d04
Removed the unsued codes
Apr 30, 2024
7c74be1
Removed all the unused codes
Apr 30, 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
140 changes: 118 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@azure/msal-browser": "^3.11.1",
"@azure/msal-react": "^2.0.14",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
Expand Down
Loading