Changes between Initial Version and Version 1 of UserRemovesStoryFromReadingList


Ignore:
Timestamp:
03/05/26 15:09:38 (2 weeks ago)
Author:
211099
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UserRemovesStoryFromReadingList

    v1 v1  
     1==  User Removes a Story from a Reading List
     2
     3=== Authors: **Regular User / Writer**
     4A user removes a story from one of their reading lists.
     5
     6**1.** The user navigates to their reading list page.
     7
     8**2.** The system displays all stories in the selected reading list.
     9{{{#!sql
     10SELECT rli.story_id, s.short_description, rli.added_at
     11FROM READING_LIST_ITEMS rli
     12JOIN STORY s ON rli.story_id = s.story_id
     13WHERE rli.list_id = 1
     14ORDER BY rli.added_at DESC;
     15}}}
     16
     17**3.** The user selects a story and clicks "Remove from List".
     18
     19**4.** The system deletes the story from the reading list.
     20{{{#!sql
     21DELETE FROM READING_LIST_ITEMS
     22WHERE list_id = 1 AND story_id = 1;
     23}}}
     24
     25**5.** The system confirms removal and refreshes the reading list view.