mirror of https://gitee.com/bigwinds/arangodb
Show License and Version for each of the apps
This commit is contained in:
parent
3b1c5b640e
commit
ab0885f0ef
|
@ -10,7 +10,7 @@
|
|||
<h3>
|
||||
<%= attributes.name %>
|
||||
<span class="license"><%= attributes.license %></span>
|
||||
<span class="version"><%= attributes.version %></span>
|
||||
<span class="version"><%= attributes.app.split(':').pop() %></span>
|
||||
</h3>
|
||||
<p class="description"><%= attributes.description %></p>
|
||||
</div>
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"description": "ArangoDB Admin Web Interface",
|
||||
"author": "ArangoDB GmbH",
|
||||
"version": "1.0",
|
||||
"license": "Apache License, Version 2.0",
|
||||
"isSystem": true,
|
||||
|
||||
"contributors": [
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
{
|
||||
"name": "cerberus",
|
||||
"version": "0.0.1",
|
||||
"description": "Password Manager",
|
||||
"author": "ArangoDB GmbH",
|
||||
"version": "0.0.1",
|
||||
"license": "Apache License, Version 2.0",
|
||||
"isSystem": true,
|
||||
|
||||
"contributors": [
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"description": "ArangoDB Graph Module",
|
||||
"author": "ArangoDB GmbH",
|
||||
"version": "0.1",
|
||||
"license": "Apache License, Version 2.0",
|
||||
"isSystem": true,
|
||||
|
||||
"contributors": [
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
"name": "sessions",
|
||||
"description": "Session storage for Foxx.",
|
||||
"author": "ArangoDB GmbH",
|
||||
"version": "0.1",
|
||||
"license": "Apache License, Version 2.0",
|
||||
"isSystem": true,
|
||||
"description": "Session storage for Foxx.",
|
||||
|
||||
"contributors": [
|
||||
{
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
"name": "simple-auth",
|
||||
"description": "Simple password-based authentication for Foxx.",
|
||||
"author": "ArangoDB GmbH",
|
||||
"version": "0.1",
|
||||
"license": "Apache License, Version 2.0",
|
||||
"isSystem": true,
|
||||
"description": "Simple password-based authentication for Foxx.",
|
||||
|
||||
"contributors": [
|
||||
{
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
"name": "users",
|
||||
"description": "Username-based user storage for Foxx.",
|
||||
"author": "ArangoDB GmbH",
|
||||
"version": "0.1",
|
||||
"license": "Apache License, Version 2.0",
|
||||
"isSystem": true,
|
||||
"description": "Username-based user storage for Foxx.",
|
||||
|
||||
"contributors": [
|
||||
{
|
||||
|
|
|
@ -665,6 +665,7 @@ function mountAalApp (app, mount, options) {
|
|||
app: app._id,
|
||||
name: app._name,
|
||||
description: app._manifest.description,
|
||||
license: app._manifest.license,
|
||||
author: app._manifest.author,
|
||||
contributors: app._manifest.contributors,
|
||||
mount: mount,
|
||||
|
|
Loading…
Reference in New Issue