Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
eraser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
OpenLicht
eraser
Merge requests
!19
dev to master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
dev to master
dev
into
master
Overview
0
Commits
69
Pipelines
2
Changes
15
Merged
René Schöne
requested to merge
dev
into
master
4 years ago
Overview
0
Commits
69
Pipelines
2
Changes
15
0
0
Merge request reports
Viewing commit
1f928f99
Prev
Next
Show latest version
15 files
+
88
−
57
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
1f928f99
Moved pw and username to ExternalHost
· 1f928f99
Manuel Krombholz
authored
4 years ago
eraser-base/src/main/jastadd/ItemHistory.jrag
+
7
−
2
View file @ 1f928f99
Edit in single-file editor
Open in Web IDE
Show full file
@@ -7,9 +7,14 @@ aspect ItemHistory {
@@ -7,9 +7,14 @@ aspect ItemHistory {
public static final InfluxRoot InfluxRoot.createDefault() {
public static final InfluxRoot InfluxRoot.createDefault() {
InfluxRoot result = new InfluxRoot();
InfluxRoot result = new InfluxRoot();
result.setUser(DEFAULT_USER);
result.setPassword(DEFAULT_PASSWORD);
ExternalHost eh = new ExternalHost();
eh.setUserName(DEFAULT_USER);
eh.setPassword(DEFAULT_PASSWORD);
result.setHost(eh);
result.setDbName(DEFAULT_DB_NAME);
result.setDbName(DEFAULT_DB_NAME);
return result;
return result;
}
}
Loading