Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
marcdelalonde committed Apr 4, 2021
1 parent 4f30a4b commit e32ad2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Adminmate Express Core

Adminmate is a tool allowing you to create your customizable administration panel in a few minutes.

Adminmate has been build to fit tiny projects to bigger one.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ const Adminmate = ({ projectId, secretKey, authKey, masterPassword, models, auth
// CRUD endpoints
router.post('/api/models/:model', isAuthorizedIP, isAuthorized, api.modelGetAll);
router.post('/api/models/:model/autocomplete', isAuthorizedIP, isAuthorized, api.modelGetAutocomplete);
router.post('/api/models/:model/:id', isAuthorizedIP, isAuthorized, api.modelGetOne);
router.post('/api/models/:model/create', isAuthorizedIP, isAuthorized, api.modelPostOne);
router.post('/api/models/:model/:id', isAuthorizedIP, isAuthorized, api.modelGetOne);
router.put('/api/models/:model/:id', isAuthorizedIP, isAuthorized, api.modelPutOne);
router.delete('/api/models/:model', isAuthorizedIP, isAuthorized, api.modelDeleteSome);

Expand Down

0 comments on commit e32ad2f

Please sign in to comment.