You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need a page that would list all apps and have delete buttons. It should go under Settings. The route should be /settings/apps.
For now we should just make it a table with all the apps and one button (delete). We should make it look similar to other similar pages, e.g /settings/users. I know @dogfrogfog is working on a unified table component, it's a good idea to use that one here.
Regarding the backend. We have 2 API endpoints, one for listing apps:
GET /api/apps
One for deleting apps, it requires a DELETE method and takes a JSON with one field (name):
We need a page that would list all apps and have delete buttons. It should go under Settings. The route should be
/settings/apps
.For now we should just make it a table with all the apps and one button (delete). We should make it look similar to other similar pages, e.g
/settings/users
. I know @dogfrogfog is working on a unified table component, it's a good idea to use that one here.Regarding the backend. We have 2 API endpoints, one for listing apps:
One for deleting apps, it requires a
DELETE
method and takes a JSON with one field (name
):These routes are authentication protected, so to use them, run pyroscope with the following arguments:
You can then log into pyroscope using
admin/admin
combination.The text was updated successfully, but these errors were encountered: