Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Netmanager]: Profile Settings Page #2401

Merged
merged 35 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
7314367
Profile Settings
danielmarv Jan 23, 2025
efeceff
User Details
danielmarv Jan 23, 2025
99c47c8
Remove commented-out code from PasswordEdit component
danielmarv Jan 28, 2025
5bfa9b7
commit
danielmarv Jan 28, 2025
dabe3f0
commit
danielmarv Jan 28, 2025
5992733
commit
danielmarv Jan 28, 2025
36741ae
Refactor ApiTokens component to fetch user clients and display them i…
danielmarv Jan 28, 2025
4dac54e
Implement client token creation and enhance client fetching in ApiTok…
danielmarv Jan 28, 2025
3c4ea58
commit
danielmarv Jan 29, 2025
cc432de
Add clients slice and hooks for managing client data; integrate Radix…
danielmarv Jan 29, 2025
91afbf1
Merge remote-tracking branch 'origin/staging' into Daniel-Net
danielmarv Jan 30, 2025
6d5b0d6
Add Clients tab to profile page and adjust layout
danielmarv Jan 30, 2025
d97fc00
Add permission-based visibility for Clients tab in profile
danielmarv Jan 30, 2025
5a82718
Fix client email display to handle undefined user cases
danielmarv Jan 30, 2025
5ff6a08
Refactor client activation API call to use POST method and update dat…
danielmarv Feb 1, 2025
6375ae9
Remove "Copy ID" button from client management table
danielmarv Feb 1, 2025
cf77a7f
Remove unused handleCopyClientId function from ClientManagement compo…
danielmarv Feb 1, 2025
4ce1cc3
Enhance MyProfile component with improved user data fetching and erro…
danielmarv Feb 1, 2025
6cb5db2
Enhance MyProfile component with loading indicator and error display;…
danielmarv Feb 1, 2025
5307a67
Add Cloudinary image upload API and update user details API; refactor…
danielmarv Feb 1, 2025
c0f547d
Implement password change functionality with validation and strength …
danielmarv Feb 2, 2025
71ff5a8
Refactor updateUserPasswordApi to use query parameters for user ID; a…
danielmarv Feb 2, 2025
845c0fa
Merge remote-tracking branch 'origin/staging' into Daniel-Net
danielmarv Feb 2, 2025
48d88c9
commit
danielmarv Feb 4, 2025
83a4cfb
Refactor token generation error handling and remove unnecessary toast…
danielmarv Feb 4, 2025
d635349
Refactor API imports in settings components to use a centralized sett…
danielmarv Feb 5, 2025
041bafd
Rename "Password Edit" tab to "Reset Password" for improved clarity
danielmarv Feb 5, 2025
84907a3
Refactor token generation and retrieval logic for improved error hand…
danielmarv Feb 5, 2025
bb70faf
fix pagination
Codebmk Feb 5, 2025
9887f72
fix update button
Codebmk Feb 5, 2025
6680208
Enhance API token management by improving access token checks and add…
danielmarv Feb 5, 2025
882aa7b
Merge branch 'Daniel-Net' of https://github.com/airqo-platform/AirQo-…
danielmarv Feb 5, 2025
0318786
Add ClientsDetails interface and improve access token display in User…
danielmarv Feb 5, 2025
4aff39c
Remove unused ClientsDetails interface from clients.ts
danielmarv Feb 5, 2025
faef2c6
Refactor UserClientsTable to improve access token handling and add us…
danielmarv Feb 6, 2025
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
290 changes: 0 additions & 290 deletions netmanager-app/app/(authenticated)/clients/page.tsx

This file was deleted.

11 changes: 11 additions & 0 deletions netmanager-app/app/(authenticated)/profile/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import ProfileTabs from "@/components/Settings/ProfileTabs"

export default function ProfilePage() {
return (
<div className="container mx-auto px-4 ">
<h1 className="text-3xl font-bold mb-6">User Profile</h1>
<ProfileTabs />
</div>
)
}

2 changes: 0 additions & 2 deletions netmanager-app/app/types/clients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,3 @@ import { UserDetails } from './users';
user: UserDetails
access_token: AccessToken
}


Loading
Loading