The team updated the URL structure of all pages and objects in the Laminar Copilot workspace to allow for improved workflow and troubleshooting.
URL paths for editing entities and routes
- When editing a driver, the user will be directed to app.laminarcopilot.com/drivers/{driver_id}/edit, with {driver_id} being the id value of the driver in our database.
- When editing an asset, the user will be directed to app.laminarcopilot.com/tractors/{tractor_id}/edit, with {tractor_id} being the id value of the asset in our database.
- When editing an contract, the user will be directed to app.laminarcopilot.com/contracts/{contract_id}/edit, with {contract_id} being the id value of the contract in our database.
- When editing a route, the user will be directed to app.laminarcopilot.com/schedules/{schedule_id}/ assigned_routes/{assigned_route_id}/edit, with {schedule_id} being the id value of the schedule and {assigned_route_id} being the id value of the route in our database.
URL paths for creating entities and routes
- app.laminarcopilot.com/drivers/new will direct the user to creating a new driver in Laminar Copilot
- app.laminarcopilot.com/tractors/new will direct the user to creating a new asset in Laminar Copilot
- app.laminarcopilot.com/contracts/new will direct the user to creating a new contract in Laminar Copilot
- app.laminarcopilot.com/schedules/{schedule_id}/assigned_routes/new will direct the user to create a new route for the schedule defined by {schedule_id}
Please note that with this new change, the url slug for the Assets page has changed from /assets to /tractors.