-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Description
This data made available through this project is currently being queried by https://rl2-api.org /mods and /mod?name= routes, using SolidJS for our frontend. However, I am not happy with it's current implementation, and feel like it could be better to use SSR to return the page from this service.
Details
Service restructuring
Current structure of the service routes:
| route | response |
|---|---|
/ |
Nothing |
/api |
Endpoint help |
/api/mod-list |
Mod list JSON |
/api/mod/{name} |
Mod data JSON |
| `/run-sync/{key} | Redirect |
New structure of the service routes
| route | response |
|---|---|
/ |
Mod list HTML |
/search?name= |
Mod list HTML with a filter applied |
/mod?name= |
Specific mod page |
/api |
Endpoint help |
/api/mod-list |
Mod list JSON |
/api/mod/{name} |
Mod data JSON |
/run-sync/{key} |
403 or 200 |
Possible technologies/libraries/crates to use
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request