Rename entries to artifacts

This commit is contained in:
2022-01-07 00:28:07 +02:00
parent 0d0468e45c
commit a9f9b63904
4 changed files with 11 additions and 11 deletions

View File

@@ -9,11 +9,11 @@ module.exports = function (options) {
.get(function(request, response, next) {
db.Artifact.findAll({
}).then(entries => {
}).then(artifacts => {
response.display("library", {
user: request.user,
pageTitle: "Library - Mantra",
entries: entries
artifacts: artifacts
})
}).catch(error => {
next(error)