Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
typescript
duniter
Merge requests
!1431
fix(1441): Add config's storage into BMA /node/summary - close
#1441
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
fix(1441): Add config's storage into BMA /node/summary - close
#1441
fix/1441/1.8/node_summary_with_storage
into
release/1.8
Overview
1
Commits
3
Pipelines
4
Changes
4
Merged
fix(1441): Add config's storage into BMA /node/summary - close #1441
Benoit Lavenier
requested to merge
fix/1441/1.8/node_summary_with_storage
into
release/1.8
May 31, 2023
Overview
1
Commits
3
Pipelines
4
Changes
4
fix(1441): Add config's storage into BMA /node/summary - close
#1441
0
0
Merge request reports
Compare
release/1.8
version 1
086fb1db
May 31, 2023
release/1.8 (base)
and
latest version
latest version
9d9f3369
3 commits,
Jun 6, 2023
version 1
086fb1db
1 commit,
May 31, 2023
4 files
+
22
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
app/modules/bma/lib/controllers/node.ts
+
6
−
0
View file @ 9d9f3369
Edit in single-file editor
Open in Web IDE
Show full file
@@ -22,6 +22,12 @@ export class NodeBinding extends AbstractController {
software
:
"
duniter
"
,
version
:
this
.
server
.
version
,
forkWindowSize
:
this
.
server
.
conf
.
forksize
,
storage
:
{
transactions
:
this
.
server
.
conf
.
storage
?
this
.
server
.
conf
.
storage
.
transactions
:
true
,
// true by default (see app/module/config.ts)
wotwizard
:
this
.
server
.
conf
.
storage
?.
wotwizard
||
false
,
// false by default (see app/module/config.ts)
},
},
};
};
Loading