-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 7 columns, instead of 9 in line 2.
18 lines (18 loc) · 1.97 KB
/
Copy pathprocess.csv
File metadata and controls
18 lines (18 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Step No.,Process Name,Description,Input,Output,Involved Modules,Actor(s)
1,Open Website,User visits PlantDex web app homepage,URL in browser,Home Page Loaded,UI Loader,User
2,Register,User enters name, email, and password to create account,User details,User account created,Auth Module,User
3,Login,User logs in using email and password,Credentials,Dashboard Access,Auth Module,User
4,Upload Image,User selects a plant image from their device,Image file,File sent to backend/API,Upload & Identification Module,User
5,Validate Image,System checks file format, size, type,Image,Validated Image or Error Message,Validation Module,System
6,Identify Plant,Image is processed through ML model/API for identification,Valid image,Plant details (name, category, etc.),Plant Identification Engine,System
7,Show Result,Display identified plant information to user,API response,Plant data shown in card format,Result Display Module,System + User
8,Save to Library,User clicks “Save” to store identified plant,Plant data + User ID,Plant entry created in database,Plant Library Module,User
9,View Library,User navigates to My Plants section,User session,All saved plants shown,Plant Library Module,User
10,Edit Plant,User updates plant notes or category,Updated data,Entry updated,Plant Library Module,User
11,Delete Plant,User deletes a saved plant,Plant ID,Entry deleted,Plant Library Module,User
12,Submit Feedback,User sends feedback or suggestions,Feedback text,Stored in feedback table,Feedback Module,User
13,Admin Login,Admin logs into admin panel,Admin credentials,Admin dashboard,Auth Module,Admin
14,Manage Users,Admin views/edit/delete users,Admin action,User list updated,Admin Control Module,Admin
15,Manage Plants,Admin reviews plant database,Admin action,Plant list updated,Admin Control Module,Admin
16,Review Feedback,Admin reads user feedback,Feedback entries,Feedback reviewed,Feedback Module,Admin
17,Logout,User/Admin logs out,Click logout,Session cleared, redirected to homepage,Session Handler,User / Admin