Changeset e882b92 for ChapterX.API/Controllers
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- Location:
- ChapterX.API/Controllers
- Files:
-
- 5 deleted
- 3 edited
-
AISuggestionsController.cs (modified) (1 diff)
-
ContentTypesController.cs (deleted)
-
NotificationsController.cs (modified) (1 diff)
-
NotifyController.cs (deleted)
-
PermissionLevelsController.cs (deleted)
-
RolesController.cs (deleted)
-
StatusController.cs (deleted)
-
StoriesController.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.API/Controllers/AISuggestionsController.cs
ra6e33d1 re882b92 55 55 appliedAt = s.AppliedAt, 56 56 storyId = s.StoryId, 57 suggestionType s = s.SuggestionTypes.Select(t => t.SuggestionTypeValue),57 suggestionType = s.SuggestionType, 58 58 }); 59 59 return Ok(result); -
ChapterX.API/Controllers/NotificationsController.cs
ra6e33d1 re882b92 35 35 isRead = n.IsRead, 36 36 createdAt = n.CreatedAt, 37 type = n.Type ?? "info", 37 contentType = n.ContentType, 38 storyId = n.StoryId, 38 39 link = n.Link, 39 40 }); -
ChapterX.API/Controllers/StoriesController.cs
ra6e33d1 re882b92 37 37 image = s.Image, 38 38 content = s.Content, 39 status = s.Status, 39 40 matureContent = s.MatureContent, 40 41 createdAt = s.CreatedAt, … … 66 67 image = s.Image, 67 68 content = s.Content, 69 status = s.Status, 68 70 matureContent = s.MatureContent, 69 71 createdAt = s.CreatedAt,
Note:
See TracChangeset
for help on using the changeset viewer.
