Changes between Initial Version and Version 1 of UseCase17


Ignore:
Timestamp:
05/17/26 20:09:36 (8 days ago)
Author:
181201
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase17

    v1 v1  
     1== Use-case 0017 - Edit User Profile
     2
     3'''Initiating actor:''' Any Registered User (Admin / Pet Owner / Pet Sitter)
     4
     5'''Other actors:''' None
     6
     7'''Description:'''
     8A user wants to update their first name, last name, or email address on the platform.
     9
     10'''Scenario:'''
     11 1. User navigates to their "Edit My Profile" page from the dashboard.
     12 2. User updates their email address and clicks "Save Changes".
     13 3. System updates the user record in the database:
     14{{{
     15#!sql
     16UPDATE users
     17SET first_name = 'Bojan', last_name = 'Jovanovski', email = 'new_bojan@email.com'
     18WHERE user_id = (SELECT user_id FROM users WHERE username = 'owner_bojan');
     19}}}