Skip to content

Commit

Permalink
Merge pull request #1488 from SynBioHub/publicAdmin
Browse files Browse the repository at this point in the history
made list of plugins public
  • Loading branch information
cjmyers authored Feb 18, 2022
2 parents 7873511 + cf4d138 commit 9d7556f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function App () {
app.get('/admin/mail', requireAdmin, views.admin.mail)
app.post('/admin/mail', requireAdmin, bodyParser.urlencoded({ extended: true }), views.admin.mail)

app.get('/admin/plugins', requireAdmin, views.admin.plugins)
app.get('/admin/plugins', views.admin.plugins)
app.post('/admin/savePlugin', requireAdmin, bodyParser.urlencoded({ extended: true }), actions.admin.savePlugin)
app.post('/admin/deletePlugin', requireAdmin, bodyParser.urlencoded({ extended: true }), actions.admin.deletePlugin)

Expand Down

0 comments on commit 9d7556f

Please sign in to comment.